This repository was archived by the owner on Jan 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
55 lines (51 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
53
54
55
#!/usr/bin/env python3
# Copyright 2020, Trail of Bits. All rights reserved.
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.realpath(os.path.dirname(__file__)), "README.md")) as f:
long_description = f.read()
# TODO(pag): Update this later with something like: version["__version__"],
version = "0.1"
setup(
name="dds",
version=version,
license="Proprietary and confidential",
author="Stefan Nagy, Peter Goodman",
author_email="[email protected]",
description="Dr. Disassembler",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lifting-bits/dds",
packages=["dds", "dds.arch", "dds.binary", "dds.datalog"],
platforms="any",
python_requires=">=3.7",
entry_points={
'console_scripts': [
'dds-analyze = dds.analyze:main'
]
},
install_requires=[
"wheel",
"capstone==4.0.2",
"lief==0.11.0.dev0",
"aenum==2.2.6",
"cle==9.0.5405",
"typing_extensions"
],
dependency_links=[
"https://lief.quarkslab.com/packages",
"https://lief.quarkslab.com/packages/lief/"
],
extras_require={
"dev": [
"mypy",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Disassemblers ",
],
)