-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (28 loc) · 875 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="smartmuv",
description="An EVM-compatible Solidity smart contract state analysis and extraction tool.",
url="https://github.com/waizkhan7/smartmuv",
author="NextKore",
version="0.2.0",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"packaging",
"crytic-compile>=0.3.3,<0.4.0",
"web3>=6.0.0",
"eth-abi>=4.0.0",
"eth-typing>=3.0.0",
"eth-utils>=2.1.0",
"slither-analyzer>=0.9.0",
"solc-select>=1.0.4",
"py-solc-x>=1.1.1",
"solidity-parser>=0.1.1",
"hexbytes>=0.2.2",
],
license="GNU-3.0",
long_description=long_description,
long_description_content_type="text/markdown"
)