-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
52 lines (48 loc) · 1.54 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
#!/usr/bin/env python3
# coding: utf-8
"""Installation script for qsynthesis module."""
from setuptools import setup, find_packages
generate_deps = ['sympy']
server_deps = ['fastapi', 'uvicorn']
assembly_deps = ["arybo", "llvmlite"]
with open("README.md") as f:
README = f.read()
setup(
name="qsynthesis",
version="0.2.0",
description="Python API to synthesize Triton AST's",
long_description_content_type='text/markdown',
long_description=README,
packages=find_packages(),
url="https://github.com/quarkslab/qsynthesis",
project_urls={
"Documentation": "https://quarkslab.github.io/qsynthesis/",
"Bug Tracker": "https://github.com/quarkslab/qsynthesis/issues",
"Source": "https://github.com/quarkslab/qsynthesis"
},
setup_requires=[],
install_requires=["triton-library",
"ordered_set",
"psutil",
"click",
"plyvel",
"requests",
"capstone",
"pydffi>=0.9.1"],
tests_require=[],
license="AGPL-3.0",
author="Robin David",
classifiers=[
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
],
extras_require={
'all': assembly_deps+generate_deps+server_deps,
'reassembly': assembly_deps,
'generator': generate_deps,
'server': server_deps
},
test_suite="",
scripts=['bin/qsynthesis-table-manager', 'bin/qsynthesis-table-server']
)