forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
176 lines (167 loc) · 6.21 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
from __future__ import annotations
import os
import sys
from setuptools import setup
dependencies = [
"aiofiles==23.1.0", # Async IO for files
"anyio==3.6.2",
"boto3==1.26.131", # AWS S3 for DL s3 plugin
"blspy==1.0.16", # Signature library
"chiavdf==1.0.9", # timelord and vdf verification
"chiabip158==1.2", # bip158-style wallet filters
"chiapos==1.0.11", # proof of space
"clvm==0.9.7",
"clvm_tools==0.4.6", # Currying, Program.to, other conveniences
"chia_rs==0.2.7",
"clvm-tools-rs==0.1.30", # Rust implementation of clvm_tools' compiler
"aiohttp==3.8.4", # HTTP server for full node rpc
"aiosqlite==0.19.0", # asyncio wrapper for sqlite, to store blocks
"bitstring==4.0.2", # Binary data management library
"colorama==0.4.6", # Colorizes terminal output
"colorlog==6.7.0", # Adds color to logs
"concurrent-log-handler==0.9.24", # Concurrently log and rotate logs
"cryptography==40.0.2", # Python cryptography library for TLS - keyring conflict
"filelock==3.12.0", # For reading and writing config multiprocess and multithread safely (non-reentrant locks)
"keyring==23.13.1", # Store keys in MacOS Keychain, Windows Credential Locker
"PyYAML==6.0", # Used for config file format
"setproctitle==1.3.2", # Gives the hddcoin processes readable names
"sortedcontainers==2.4.0", # For maintaining sorted mempools
"click==8.1.3", # For the CLI
"click-params==0.4.0", # For HDDcoin HODL
"distro==1.8.0", # For HDDcoin HODL
"dnspython==2.3.0", # Query DNS seeds
"watchdog==2.2.0", # Filesystem event watching - watches keyring.yaml
"dnslib==0.9.23", # dns lib
"typing-extensions==4.6.0", # typing backports like Protocol and TypedDict
"zstd==1.5.5.1",
"packaging==23.1",
"psutil==5.9.4",
]
upnp_dependencies = [
"miniupnpc==2.2.2", # Allows users to open ports on their router
]
dev_dependencies = [
"build",
# >=7.2.4 for https://github.com/nedbat/coveragepy/issues/1604
"coverage>=7.2.4",
"diff-cover",
"pre-commit",
"py3createtorrent",
"pylint",
"pytest",
"pytest-asyncio>=0.18.1", # require attribute 'fixture'
"pytest-cov",
"pytest-monitor; sys_platform == 'linux'",
"pytest-xdist",
"twine",
"isort",
"flake8",
"mypy==1.3.0",
"black==23.3.0",
"aiohttp_cors", # For blackd
"ipython", # For asyncio debugging
"pyinstaller==5.11.0",
"types-aiofiles",
"types-cryptography",
"types-pkg_resources",
"types-pyyaml",
"types-setuptools",
]
legacy_keyring_dependencies = [
"keyrings.cryptfile==1.3.9",
]
kwargs = dict(
name="hddcoin-blockchain",
author="HDDcoin Blockchain",
author_email="[email protected]",
description="HDDcoin blockchain full node, farmer, timelord, and wallet.",
url="https://hddcoin.org/",
license="Apache License",
python_requires=">=3.7, <4",
keywords="hddcoin blockchain node",
install_requires=dependencies,
extras_require=dict(
dev=dev_dependencies,
upnp=upnp_dependencies,
legacy_keyring=legacy_keyring_dependencies,
),
packages=[
"build_scripts",
"hddcoin",
"hddcoin.cmds",
"hddcoin.clvm",
"hddcoin.consensus",
"hddcoin.daemon",
"hddcoin.data_layer",
"hddcoin.full_node",
"hddcoin.hodl",
"hddcoin.hodl.cli",
"hddcoin.timelord",
"hddcoin.farmer",
"hddcoin.harvester",
"hddcoin.introducer",
"hddcoin.plot_sync",
"hddcoin.plotters",
"hddcoin.plotting",
"hddcoin.pools",
"hddcoin.protocols",
"hddcoin.rpc",
"hddcoin.seeder",
"hddcoin.server",
"hddcoin.simulator",
"hddcoin.types.blockchain_format",
"hddcoin.types",
"hddcoin.util",
"hddcoin.wallet",
"hddcoin.wallet.db_wallet",
"hddcoin.wallet.puzzles",
"hddcoin.wallet.cat_wallet",
"hddcoin.wallet.did_wallet",
"hddcoin.wallet.nft_wallet",
"hddcoin.wallet.trading",
"hddcoin.wallet.util",
"hddcoin.wallet.vc_wallet",
"hddcoin.wallet.vc_wallet.vc_puzzles",
"hddcoin.wallet.vc_wallet.cr_puzzles",
"hddcoin.ssl",
"mozilla-ca",
],
entry_points={
"console_scripts": [
"hddcoin = hddcoin.cmds.hddcoin:main",
"hddcoin_daemon = hddcoin.daemon.server:main",
"hddcoin_wallet = hddcoin.server.start_wallet:main",
"hddcoin_full_node = hddcoin.server.start_full_node:main",
"hddcoin_harvester = hddcoin.server.start_harvester:main",
"hddcoin_farmer = hddcoin.server.start_farmer:main",
"hddcoin_introducer = hddcoin.server.start_introducer:main",
"hddcoin_crawler = hddcoin.seeder.start_crawler:main",
"hddcoin_seeder = hddcoin.seeder.dns_server:main",
"hddcoin_timelord = hddcoin.server.start_timelord:main",
"hddcoin_timelord_launcher = hddcoin.timelord.timelord_launcher:main",
"hddcoin_full_node_simulator = hddcoin.simulator.start_simulator:main",
"hddcoin_data_layer = hddcoin.server.start_data_layer:main",
"hddcoin_data_layer_http = hddcoin.data_layer.data_layer_server:main",
"hddcoin_data_layer_s3_plugin = hddcoin.data_layer.s3_plugin_service:run_server",
]
},
package_data={
"hddcoin": ["pyinstaller.spec"],
"": ["*.clsp", "*.clsp.hex", "*.clvm", "*.clib", "py.typed"],
"hddcoin.util": ["initial-*.yaml", "english.txt"],
"hddcoin.ssl": ["hddcoin_ca.crt", "hddcoin_ca.key", "dst_root_ca.pem"],
"mozilla-ca": ["cacert.pem"],
},
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
project_urls={
"Source": "https://github.com/HDDcoin-Network/hddcoin-blockchain/",
"Changelog": "https://github.com/HDDcoin-Network/hddcoin-blockchain/blob/main/CHANGELOG.md",
},
)
if "setup_file" in sys.modules:
# include dev deps in regular deps when run in snyk
dependencies.extend(dev_dependencies)
if len(os.environ.get("HDDCOIN_SKIP_SETUP", "")) < 1:
setup(**kwargs) # type: ignore