-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
33 lines (30 loc) · 1.04 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
exec(open("thoth/version.py").read())
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="thoth",
description="Cairo/Starknet bytecode analyzer, disassembler and decompiler",
url="https://github.com/FuzzingLabs/thoth",
keywords="cairo-lang starknet disassembler decompiler analysis security reversing cfg callflow",
author="FuzzingLabs",
version=__version__,
packages=find_packages(),
python_requires=">=3.6",
install_requires=["z3-solver", "graphviz", "lark", "pyyaml"],
include_package_data=True,
package_data={
"": ["/sierra/parser/*"],
},
license="AGPL-3.0",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"thoth = thoth.thoth:main",
"thoth-sierra = sierra.thoth_sierra:thoth_sierra",
"thoth-checker = sierra.thoth_sierra:thoth_checker",
]
},
)