-
Notifications
You must be signed in to change notification settings - Fork 430
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
69 lines (64 loc) · 1.73 KB
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
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "e-x"
authors = [
{ name = "The Electrum developers" },
]
description = "Server implementation for the Electrum protocol"
keywords = ["asyncio", "bitcoin", "electrum", "electrum-server"]
readme = "README.md"
license = {'file'="LICENSE"}
requires-python = ">=3.10"
dependencies = [
"aiorpcx[ws]>=0.25.0,<0.26",
"attrs", # TODO try to use stdlib dataclasses instead
"plyvel",
"aiohttp>=3.3,<4",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Internet",
]
dynamic = ['version']
[project.urls]
Homepage = "https://github.com/spesmilo/electrumx"
Repository = "https://github.com/spesmilo/electrumx"
[project.scripts]
electrumx_server = "electrumx.cli.electrumx_server:main"
electrumx_rpc = "electrumx.cli.electrumx_rpc:main"
electrumx_compact_history = "electrumx.cli.electrumx_compact_history:main"
[tool.setuptools.dynamic]
version = { attr = 'electrumx.__version__' }
[project.optional-dependencies]
dev = [
"objgraph",
]
rocksdb = [
"python-rocksdb>=0.6.9",
"Cython<3.0",
]
rapidjson = [
"python-rapidjson>=0.4.1,<2.0",
]
ujson = [
"ujson>=2.0.0,<4.0.0",
]
uvloop = [
"uvloop>=0.14",
]
# For various altcoins
blake256 = ["blake256>=0.1.1", ]
crypto = ["pycryptodomex>=3.8.1", ]
groestl = ["groestlcoin-hash>=1.0.1", ]
tribushashm = ["tribushashm>=1.0.5", ]
xevan-hash = ["xevan-hash", ]
dash_hash = ["dash_hash>=1.4", ]
zny-yespower-0-5 = ["zny-yespower-0-5", ]