forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 785 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
#!/usr/bin/python3
from setuptools import setup
dependencies = ["blspy", "cbor2", "pyyaml", "asyncssh", "motor", "miniupnpc", "uvloop"]
dev_dependencies = [
"pytest",
"flake8",
"mypy",
"isort",
"autoflake",
"black",
"pytest-asyncio",
]
setup(
name="chiablockchain",
author="Mariano Sorgente",
author_email="[email protected]",
description="Chia proof of space plotting, proving, and verifying (wraps C++)",
license="Apache License",
python_requires=">=3.7, <4",
keywords="chia blockchain node",
install_requires=dependencies + dev_dependencies,
setup_requires=["setuptools_scm"],
use_scm_version={"fallback_version": "unknown-no-.git-directory"},
long_description=open("README.md").read(),
zip_safe=False,
)