basicswap/pyproject.toml

45 lines
1,000 B
TOML
Raw Normal View History

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "basicswap"
description = "Simple atomic swap system"
keywords = ["crypto", "cryptocurrency", "particl", "bitcoin", "monero", "wownero"]
readme = "README.md"
license = {file = "LICENSE"}
2024-10-10 16:17:24 +00:00
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
]
2024-10-10 16:17:24 +00:00
dependencies = [
# See requirements.txt
2024-10-10 16:17:24 +00:00
]
dynamic = ["version"]
[project.urls]
Homepage = "https://basicswapdex.com"
Source = "https://github.com/basicswap/basicswap"
[project.scripts]
basicswap-prepare = "basicswap.bin.prepare:main"
basicswap-run = "basicswap.bin.run:main"
2024-10-10 16:17:24 +00:00
[project.optional-dependencies]
dev = [
"codespell",
"flake8",
2024-10-15 15:16:00 +00:00
"pip-tools",
2024-10-10 16:17:24 +00:00
"pytest",
"selenium",
2024-10-10 16:17:24 +00:00
]
[tool.hatch.version]
path = "basicswap/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true