forked from mitre-attack/mitreattack-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (60 loc) · 2 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mitreattack-python",
version="3.0.3",
author="MITRE ATT&CK, MITRE Corporation",
author_email="[email protected]",
description="MITRE ATT&CK python library",
long_description=long_description,
long_description_content_type="text/markdown",
maintainer="Jared Ondricek",
maintainer_email="[email protected]",
license="Apache 2.0",
url="https://github.com/mitre-attack/mitreattack-python/",
package_data={"mitreattack": ["navlayers/exporters/fonts/*.ttf"]},
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",
"download_attack_stix=mitreattack.download_stix:app",
]
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Security",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
install_requires=[
"colour",
"deepdiff",
"drawsvg>=2.0.0",
"loguru",
"Markdown",
"numpy",
"openpyxl",
"pandas",
"pooch",
"python-dateutil",
"Pillow",
"requests",
"rich",
"stix2",
"stix2-elevator",
"tabulate",
"taxii2-client",
"tqdm",
"typer",
"xlsxwriter",
],
)