-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (42 loc) · 1.48 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
from os import path
from setuptools import setup, find_packages
GAME_ENGINE_VERSION_RAW: str
cwd = path.abspath(path.dirname(__file__))
# Import GAME_ENGINE_VERSION_RAW
# TODO XXX find a more elegant way of tracking versions
with open(path.join(cwd, 'd20', 'version.py')) as f:
exec(f.read())
with open(path.join(cwd, 'README.md')) as f:
long_description = f.read()
setup(name="d20-framework",
version=GAME_ENGINE_VERSION_RAW, # noqa
description="Automated Static Analysis Framework",
long_description=long_description,
long_description_content_type='text/markdown',
author="MITRE",
author_email="",
url="https://github.com/MITRECND/d20",
python_requires=">=3.7",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Security',
],
install_requires=[
'python-magic',
'ssdeep',
'pyyaml>=5.1,<5.2',
'requests',
'packaging',
'cerberus',
'texttable'
],
packages=find_packages(exclude=("d20.tests",)),
entry_points={'console_scripts':
['d20=d20.Manual.Entry:main',
'd20-shell=d20.Manual.Entry:shellmain']}
)