forked from crytic/crytic-compile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.28 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
"""
CryticCompile package installation
"""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf8") as f:
long_description = f.read()
setup(
name="crytic-compile",
description="Util to facilitate smart contracts compilation.",
url="https://github.com/crytic/crytic-compile",
author="Trail of Bits",
version="0.3.7",
packages=find_packages(),
# Python 3.12.0 on Windows suffers from https://github.com/python/cpython/issues/109590
# breaking some of our integrations. The issue is fixed in 3.12.1
python_requires=">=3.8,!=3.12.0",
install_requires=["pycryptodome>=3.4.6", "cbor2", "solc-select>=v1.0.4"],
extras_require={
"test": [
"pytest",
"pytest-cov",
],
"lint": [
"black==22.3.0",
"pylint==2.13.4",
"mypy==0.942",
"darglint==1.8.0",
],
"doc": [
"pdoc",
],
"dev": [
"crytic-compile[test,doc,lint]",
],
},
license="AGPL-3.0",
long_description=long_description,
long_description_content_type="text/markdown",
package_data={"crytic_compile": ["py.typed"]},
entry_points={"console_scripts": ["crytic-compile = crytic_compile.__main__:main"]},
)