chia-blockchain/setup.py

28 lines
696 B
Python
Raw Normal View History

#!/usr/bin/python3
from setuptools import setup
dependencies = ["blspy", "cbor2", "pyyaml", "asyncssh", "motor", "miniupnpc", "uvloop"]
2019-11-18 07:50:31 +03:00
dev_dependencies = [
"pytest",
"flake8",
"mypy",
"isort",
"autoflake",
"black",
"pytest-asyncio",
]
setup(
2019-11-18 07:50:31 +03:00
name="chiablockchain",
version="0.1.2",
author="Mariano Sorgente",
author_email="mariano@chia.net",
description="Chia proof of space plotting, proving, and verifying (wraps C++)",
license="Apache License",
python_requires=">=3.7, <4",
keywords="chia blockchain node",
2019-07-23 17:11:07 +03:00
install_requires=dependencies + dev_dependencies,
2019-11-13 10:25:42 +03:00
long_description=open("README.md").read(),
zip_safe=False,
)