forked from jinksunk/Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 761 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
setup(name='python-maec',
description='latest set of MAEC and CybOX bindings from MAEC (http://maec.mitre.org) tools repository',
author='MITRE',
author_email='maec@mitre.org',
url="https://github.com/MAECProject/Tools",
maintainer="Roberto Martelloni",
maintainer_email="rmartelloni@gmail.com",
version='0.0.1',
py_modules=['maec'],
long_description="""Python bindings for MAEC (http://maec.mitre.org) & CybOX (http://cybox.mitre.org/). """,
keywords="maec CybOX",
license="http://maec.mitre.org/about/termsofuse.html, http://cybox.mitre.org/about/termsofuse.html",
packages=['maec','cybox'],
package_dir={'': 'Bindings/Python'}
)