mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-10 12:29:49 +03:00
Add some more dependencies. Run black on setup.py.
This commit is contained in:
parent
fd6b53883f
commit
f8c02aa57f
23
setup.py
23
setup.py
@ -1,15 +1,18 @@
|
||||
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
|
||||
"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
|
||||
"colorlog" # Adds color to logs
|
||||
"aiter", # Used for async generator tools
|
||||
"blspy", # Signature library
|
||||
"cbor2", # Used for network wire format
|
||||
"pyyaml", # Used for config file format
|
||||
"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
|
||||
"colorlog", # Adds color to logs
|
||||
"chiavdf", # timelord and vdf verification
|
||||
"chiabip158", # bip158-style wallet filters
|
||||
"chiapos", # proof of space
|
||||
]
|
||||
dev_dependencies = [
|
||||
"pytest",
|
||||
@ -18,7 +21,7 @@ dev_dependencies = [
|
||||
"isort",
|
||||
"autoflake",
|
||||
"black",
|
||||
"pytest-asyncio"
|
||||
"pytest-asyncio",
|
||||
]
|
||||
|
||||
setup(
|
||||
|
Loading…
Reference in New Issue
Block a user