-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (46 loc) · 1.8 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
INIT_FILE = join(dirname(abspath(__file__)), 'maec_to_stix', '__init__.py')
def get_version():
with open(INIT_FILE) as f:
for line in f.readlines():
if line.startswith("__version__"):
version = line.split()[-1].strip('"')
return version
raise AttributeError("Package does not have a __version__")
with open('README.rst') as f:
readme = f.read()
extras_require = {
'docs': [
'Sphinx==1.2.1',
# TODO: remove when updating to Sphinx 1.3, since napoleon will be
# included as sphinx.ext.napoleon
'sphinxcontrib-napoleon==0.2.4',
]
}
setup(
name="maec_to_stix",
version=get_version(),
author="MAEC Project",
author_email="[email protected]",
description="An API for wrapping MAEC documents in STIX and also extracting STIX Indicators from MAEC documents.",
long_description=readme,
url="http://maec.mitre.org",
packages=find_packages(),
scripts=['maec_to_stix/scripts/maec_wrap.py',
'maec_to_stix/scripts/maec_extract_indicators.py',
'maec_to_stix/scripts/copy_maec_to_stix_config.py'],
include_package_data=True,
package_data={'maec_to_stix': ['indicator_extractor/config/*.json']},
install_requires=['maec>=4.1.0.10,<4.1.0.13', 'cybox>=2.1.0.9,<2.1.0.13', 'stix>=1.1.1.3,<1.2.0.0'],
extras_require=extras_require,
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
)