-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
92 lines (82 loc) · 2.66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Standard Library
from os.path import abspath, dirname, join
# external
from setuptools import find_packages, setup
CUR_DIR = dirname(abspath(__file__))
INIT_FILE = join(CUR_DIR, 'stix2elevator', '__init__.py')
VERSION_FILE = join(CUR_DIR, 'stix2elevator', 'version.py')
def get_version():
with open(VERSION_FILE) as f:
for line in f:
if not line.startswith("__version__"):
continue
version = line.split()[-1].strip('"')
return version
raise AttributeError("Package does not have a __version__")
def get_long_description():
with open('README.rst') as f:
return f.read()
setup(
name='stix2-elevator',
version=get_version(),
description='Utility to upgrade STIX 1.X and CybOX content to STIX 2.X',
long_description=get_long_description(),
long_description_content_type='text/x-rst',
url='https://oasis-open.github.io/cti-documentation/',
author='OASIS Cyber Threat Intelligence Technical Committee',
author_email='[email protected]',
packages=find_packages(exclude=['*.test', '*.test.*']),
python_requires='>=3.7',
install_requires=[
'maec',
'netaddr',
'pycountry>=20.7.0',
'pluralizer',
'stix>=1.1.1.9,<1.2.1.0',
'stix2>=3.0.0',
'stix2-validator>=3.0.0',
'stixmarx>=1.0.8',
],
entry_points={
'console_scripts': [
'stix2_elevator = stix2elevator.cli:main',
'stix_stepper = stix2elevator.stix_stepper:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
keywords='stix stix2 json xml cti cyber threat intelligence',
project_urls={
'Documentation': 'https://stix2-elevator.readthedocs.io/',
'Source Code': 'https://github.com/oasis-open/cti-stix-elevator/',
'Bug Tracker': 'https://github.com/oasis-open/cti-stix-elevator/issues/',
},
extras_require={
'dev': [
'bumpversion',
'pre-commit',
],
'test': [
'coverage',
'pytest',
'pytest-cov',
'tox',
],
'docs': [
'sphinx',
'sphinx-prompt',
],
"acs": [
'stix-edh>=1.0.3',
]
},
)