-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 819 Bytes
/
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
from setuptools import setup
setup(
name="BINocular",
version="1.1",
description="Common Binary Framework",
author="Brandon Wong",
packages = ["binocular"],
install_requires = [
'rich',
'typer',
'pydantic',
'networkx',
'checksec-py>=0.7.4',
'SQLAlchemy',
'coloredlogs',
'archinfo',
'pyvex',
'GitPython',
'meson',
'rzpipe',
'tree-sitter',
'tree-sitter-c',
'requests',
'IPython',
'sphinx'
],
extra_require = {
'dev': ['pytest', 'sphinx', 'sphinx_rtd_theme', 'sphinx_mdinclude', 'build']
},
entry_points={
"console_scripts": ['binocular = binocular.run:main']
},
package_data={
'binocular': ['scripts/*']
}
)