mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-13 12:33:40 +02:00
79 lines
No EOL
1.6 KiB
TOML
79 lines
No EOL
1.6 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=64", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "joinmarket"
|
|
version = "0.9.12"
|
|
description = "Joinmarket client library for Bitcoin coinjoins"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9,<3.14"
|
|
license = {file = "LICENSE"}
|
|
dependencies = [
|
|
"chromalog==1.0.5",
|
|
"cryptography==42.0.4",
|
|
"service-identity==21.1.0",
|
|
"twisted==24.7.0",
|
|
"txtorcon==23.11.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
jmbitcoin = [
|
|
"python-bitcointx==1.1.5",
|
|
]
|
|
jmclient = [
|
|
"argon2_cffi==21.3.0",
|
|
"autobahn==20.12.3",
|
|
"fastbencode==0.3.6",
|
|
"klein==20.6.0",
|
|
"mnemonic==0.20",
|
|
"pyjwt==2.4.0",
|
|
"werkzeug==2.2.3",
|
|
]
|
|
jmdaemon = [
|
|
"libnacl==1.8.0",
|
|
"pyopenssl==24.0.0",
|
|
]
|
|
jmqtui = [
|
|
"PyQt5!=5.15.0,!=5.15.1,!=5.15.2,!=6.0",
|
|
"PySide2!=5.15.0,!=5.15.1,!=5.15.2,!=6.0", # https://bugreports.qt.io/browse/QTBUG-88688
|
|
"qrcode[pil]==7.3.1",
|
|
'pywin32; platform_system == "Windows"',
|
|
"qt5reactor==0.6.3",
|
|
]
|
|
client = [
|
|
"joinmarket[jmclient]",
|
|
"joinmarket[jmbitcoin]",
|
|
]
|
|
daemon = [
|
|
"joinmarket[jmdaemon]",
|
|
]
|
|
services = [
|
|
"joinmarket[client]",
|
|
"joinmarket[daemon]",
|
|
]
|
|
test = [
|
|
"joinmarket[services]",
|
|
"coverage==5.2.1",
|
|
"flake8",
|
|
"freezegun",
|
|
"mock",
|
|
"pexpect",
|
|
"pytest-cov>=2.4.0,<2.6",
|
|
"pytest==6.2.5",
|
|
"python-coveralls",
|
|
]
|
|
gui = [
|
|
"joinmarket[services]",
|
|
"joinmarket[jmqtui]",
|
|
]
|
|
|
|
[project.urls]
|
|
repository = "https://github.com/JoinMarket-Org/joinmarket-clientserver.git"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
exclude = ["*.test"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["test"] |