-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
52 lines (50 loc) · 1.53 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
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text(encoding="utf8")
LICENSE = (HERE / "LICENSE.md").read_text(encoding="utf8")
DESCRIPTION = ("Cybersecurity Decision Analysis Simulator (CDAS) details "
"available on GitHub (https://github.com/cmu-sei/CDAS)")
setup(
name="cdas",
version="0.0.6",
description="Cybersecurity Decision Analysis Simulator (CDAS)",
long_description=DESCRIPTION,
#long_description_content_type="text/markdown",
author="Carnegie Mellon University",
url="https://github.com/cmu-sei/CDAS",
license=LICENSE,
platforms=['any'],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
],
packages=["cdas"],
include_package_data=True,
package_data={
'cdas': [
'data/*',
'data/cia_world_factbook/*',
'data/asns/*'
'assets/*',
'assets/html_templates/*'
'assets/mitre_cti/*',
'assets/mitre_cti/attack-patterns/*',
'assets/mitre_cti/threat-actors/*',
'assets/mitre_cti/malware/*',
'assets/mitre_cti/tools/*'
]
},
install_requires=[
"numpy",
"reportlab",
"drawSVG==1.6.0",
"cyberdem"],
entry_points={
"console_scripts": [
"cdas=cdas.__main__:main",
]
},
)