forked from CounterpartyXCP/counterparty-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 963 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling==1.14.0"]
build-backend = "hatchling.build"
[project]
name = "counterparty-lib"
requires-python = ">= 3.11"
dynamic = ["version"]
description = "Counterparty library"
readme = "README.md"
license-files = { paths = ["./LICENSE"] }
dependencies = [
'apsw==3.44.2.0',
'appdirs==1.4.4',
'setuptools-markdown==0.4.1', # TODO: remove this dependency
'python-dateutil==2.8.2',
'Flask-HTTPAuth==4.8.0',
'Flask==3.0.0',
'colorlog==6.8.0',
'json-rpc==1.15.0',
'pycoin==0.92.20230326',
'pycryptodome==3.20.0',
'safe-pysha3==1.0.4',
'pytest==7.4.4',
'pytest-cov==4.1.0',
'python-bitcoinlib==0.12.2',
'requests==2.31.0',
'tendo==0.3.0',
'xmltodict==0.13.0',
'cachetools==5.3.2',
'bitstring==4.1.4',
'Werkzeug==3.0.1',
'itsdangerous==2.1.2',
]
[tool.hatch.version]
path = "counterpartylib/lib/config.py"
[project.scripts]
tower = "towercli.tower:main"