forked from adpare/mitreattack-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.79 KB
/
setup.py
File metadata and controls
56 lines (54 loc) · 1.79 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mitreattack-python",
version="1.5.7",
author="MITRE ATT&CK, MITRE Corporation",
author_email="attack@mitre.org",
description="MITRE ATT&CK python library",
long_description=long_description,
long_description_content_type="text/markdown",
maintainer="Caleb Little",
maintainer_email="clittle@mitre.org",
license="Apache 2.0",
url="https://github.com/mitre-attack/mitreattack-python/",
include_package_data=True,
entry_points={
'console_scripts': [
'attackToExcel_cli=mitreattack.attackToExcel.attackToExcel:main',
'layerExporter_cli=mitreattack.navlayers.layerExporter_cli:main',
'layerGenerator_cli=mitreattack.navlayers.layerGenerator_cli:main',
'indexToMarkdown_cli=mitreattack.collections.index_to_markdown:main',
'collectionToIndex_cli=mitreattack.collections.collection_to_index:main',
'stixToCollection_cli=mitreattack.collections.stix_to_collection:main',
'diff_stix=mitreattack.diffStix.changelog_helper:main'
]
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Security",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'colour',
'drawSvg',
'loguru',
'Markdown',
'numpy',
'openpyxl',
'pandas',
'Pillow',
'requests',
'stix2',
'stix2-elevator',
'tabulate',
'taxii2-client',
'tqdm',
'xlsxwriter',
]
)