forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.37 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
#!/usr/bin/python3
from setuptools import setup
dependencies = [
"aiter", # Used for async generator tools
"blspy", # Signature library
"cbor2", # Used for network wire format
"pyyaml", # Used for config file format
"asyncssh", # Used for SSH server for UI
"miniupnpc", # Allows users to open ports on their router
"aiosqlite", # asyncio wrapper for sqlite, to store blocks
"aiohttp", # HTTP server for full node rpc
"setuptools-scm", # Used for versioning
"prompt-toolkit", # Used to create a terminal based UI for full node
"colorlog" # Adds color to logs
]
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"],
extras_require={
'uvloop': ["uvloop"],
},
use_scm_version={"fallback_version": "unknown-no-.git-directory"},
long_description=open("README.md").read(),
zip_safe=False,
)