2019-07-19 05:30:31 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
2020-03-30 21:00:13 +02:00
|
|
|
|
2020-01-13 14:19:53 +01:00
|
|
|
dependencies = [
|
2020-03-30 21:00:13 +02:00
|
|
|
"aiter==0.13.20191203", # Used for async generator tools
|
2021-02-06 08:21:13 +01:00
|
|
|
"blspy==0.3.5", # Signature library
|
2021-03-04 05:54:19 +01:00
|
|
|
"chiavdf==0.9", # timelord and vdf verification
|
2021-03-04 03:14:16 +01:00
|
|
|
"chiabip158==1.0", # bip158-style wallet filters
|
2021-02-24 07:17:00 +01:00
|
|
|
"chiapos==0.12.45", # proof of space
|
2021-03-03 23:12:04 +01:00
|
|
|
"clvm==0.9.3",
|
|
|
|
"clvm_rs==0.1.4",
|
|
|
|
"clvm_tools==0.4.3",
|
2021-02-26 05:05:28 +01:00
|
|
|
"aiohttp==3.7.4", # HTTP server for full node rpc
|
2021-02-22 02:09:33 +01:00
|
|
|
"aiosqlite==0.17.0", # asyncio wrapper for sqlite, to store blocks
|
2020-06-24 23:30:58 +02:00
|
|
|
"bitstring==3.1.7", # Binary data management library
|
2021-01-15 00:18:15 +01:00
|
|
|
"colorlog==4.7.2", # Adds color to logs
|
2020-11-18 12:00:54 +01:00
|
|
|
"concurrent-log-handler==0.9.19", # Concurrently log and rotate logs
|
2021-02-08 06:50:07 +01:00
|
|
|
# "cryptography==3.4.1", # Python cryptography library for TLS - keyring conflict
|
|
|
|
"cryptography==3.3.2", # Python cryptography library for TLS
|
2020-11-18 13:52:43 +01:00
|
|
|
"keyring==21.5.0", # Store keys in MacOS Keychain, Windows Credential Locker
|
2020-12-22 19:07:35 +01:00
|
|
|
"keyrings.cryptfile==1.3.4", # Secure storage for keys on Linux (Will be replaced)
|
2021-02-09 06:16:34 +01:00
|
|
|
"PyYAML==5.4.1", # Used for config file format
|
2021-01-30 02:45:34 +01:00
|
|
|
"setproctitle==1.2.2", # Gives the chia processes readable names
|
2020-11-10 06:31:50 +01:00
|
|
|
"sortedcontainers==2.3.0", # For maintaining sorted mempools
|
2020-06-24 23:30:58 +02:00
|
|
|
"websockets==8.1.0", # For use in wallet RPC and electron UI
|
2021-02-23 11:23:56 +01:00
|
|
|
"click==7.1.2", # For the CLI
|
2020-01-13 14:19:53 +01:00
|
|
|
]
|
2020-03-30 21:00:13 +02:00
|
|
|
|
2020-03-31 02:46:08 +02:00
|
|
|
upnp_dependencies = [
|
2020-12-10 20:55:59 +01:00
|
|
|
"miniupnpc==2.0.2", # Allows users to open ports on their router
|
2020-03-31 02:46:08 +02:00
|
|
|
]
|
2019-11-18 05:50:31 +01:00
|
|
|
dev_dependencies = [
|
|
|
|
"pytest",
|
2020-06-25 04:26:52 +02:00
|
|
|
"pytest-asyncio",
|
2019-11-18 05:50:31 +01:00
|
|
|
"flake8",
|
|
|
|
"mypy",
|
|
|
|
"black",
|
|
|
|
]
|
2019-07-19 05:30:31 +02:00
|
|
|
|
2020-04-01 02:39:42 +02:00
|
|
|
kwargs = dict(
|
2020-03-30 21:23:50 +02:00
|
|
|
name="chia-blockchain",
|
2019-11-18 05:50:31 +01:00
|
|
|
author="Mariano Sorgente",
|
|
|
|
author_email="mariano@chia.net",
|
2020-06-17 01:46:51 +02:00
|
|
|
description="Chia blockchain full node, farmer, timelord, and wallet.",
|
2020-04-19 21:34:15 +02:00
|
|
|
url="https://chia.net/",
|
2019-11-18 05:50:31 +01:00
|
|
|
license="Apache License",
|
|
|
|
python_requires=">=3.7, <4",
|
|
|
|
keywords="chia blockchain node",
|
2020-03-27 20:17:34 +01:00
|
|
|
install_requires=dependencies,
|
2019-12-09 13:29:37 +01:00
|
|
|
setup_requires=["setuptools_scm"],
|
2020-04-01 02:39:42 +02:00
|
|
|
extras_require=dict(
|
2020-09-02 00:30:23 +02:00
|
|
|
uvloop=["uvloop"],
|
|
|
|
dev=dev_dependencies,
|
|
|
|
upnp=upnp_dependencies,
|
2020-04-01 02:39:42 +02:00
|
|
|
),
|
2020-03-28 01:09:19 +01:00
|
|
|
packages=[
|
2020-05-20 09:41:10 +02:00
|
|
|
"build_scripts",
|
2020-03-28 01:09:19 +01:00
|
|
|
"src",
|
|
|
|
"src.cmds",
|
|
|
|
"src.consensus",
|
2020-05-14 23:27:51 +02:00
|
|
|
"src.daemon",
|
2020-03-28 01:09:19 +01:00
|
|
|
"src.full_node",
|
2020-12-10 17:34:56 +01:00
|
|
|
"src.timelord",
|
|
|
|
"src.farmer",
|
|
|
|
"src.harvester",
|
|
|
|
"src.introducer",
|
2020-03-28 01:09:19 +01:00
|
|
|
"src.protocols",
|
|
|
|
"src.rpc",
|
|
|
|
"src.server",
|
2020-03-30 00:23:27 +02:00
|
|
|
"src.simulator",
|
2020-03-28 01:09:19 +01:00
|
|
|
"src.types",
|
|
|
|
"src.util",
|
|
|
|
"src.wallet",
|
|
|
|
"src.wallet.puzzles",
|
|
|
|
"src.wallet.rl_wallet",
|
2020-04-25 20:53:45 +02:00
|
|
|
"src.wallet.cc_wallet",
|
2020-03-28 01:09:19 +01:00
|
|
|
"src.wallet.util",
|
2020-06-30 17:19:59 +02:00
|
|
|
"src.wallet.trading",
|
2020-04-14 01:31:58 +02:00
|
|
|
"src.ssl",
|
2020-03-28 01:09:19 +01:00
|
|
|
],
|
2020-03-27 20:17:34 +01:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2020-04-24 23:23:37 +02:00
|
|
|
"chia = src.cmds.chia:main",
|
2020-07-25 05:46:18 +02:00
|
|
|
"chia_wallet = src.server.start_wallet:main",
|
2020-04-09 19:23:28 +02:00
|
|
|
"chia_full_node = src.server.start_full_node:main",
|
|
|
|
"chia_harvester = src.server.start_harvester:main",
|
|
|
|
"chia_farmer = src.server.start_farmer:main",
|
|
|
|
"chia_introducer = src.server.start_introducer:main",
|
|
|
|
"chia_timelord = src.server.start_timelord:main",
|
2020-12-10 20:36:25 +01:00
|
|
|
"chia_timelord_launcher = src.timelord.timelord_launcher:main",
|
2020-04-09 19:23:28 +02:00
|
|
|
"chia_full_node_simulator = src.simulator.start_simulator:main",
|
2020-03-27 20:17:34 +01:00
|
|
|
]
|
2020-01-23 06:19:47 +01:00
|
|
|
},
|
2021-03-04 02:26:26 +01:00
|
|
|
package_data={
|
|
|
|
"src.util": ["initial-*.yaml", "english.txt"],
|
|
|
|
"src.ssl": ["chia_ca.crt", "chia_ca.key", "dst_root_ca.pem"],
|
|
|
|
},
|
2019-12-13 23:57:51 +01:00
|
|
|
use_scm_version={"fallback_version": "unknown-no-.git-directory"},
|
2019-11-13 08:25:42 +01:00
|
|
|
long_description=open("README.md").read(),
|
2020-09-15 04:33:57 +02:00
|
|
|
long_description_content_type="text/markdown",
|
2019-07-19 05:30:31 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|
2020-04-01 02:39:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
setup(**kwargs)
|