forked from Franklinliu/InvCon-Tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 771 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 771 Bytes
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
from setuptools import setup, find_packages
setup(
name="InvCon",
description="A Dynamic Invariant Detector for Ethereum Smart Contracts",
url="https://github.com/Franklinliu/InvCon-tool",
author="Liu Ye",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"solc-select",
"requests",
"beautifulsoup4",
"pandas",
"cloudscraper",
"alive-progress",
"web3",
],
# dependency_links=["git+https://github.com/crytic/crytic-compile.git@master#egg=crytic-compile"],
license="AGPL-3.0",
long_description=open("README.md").read(),
entry_points={
"console_scripts": [
"invcon = invcon.__main__:main"
]
},
)