2024-10-09 20:15:56 +00:00
|
|
|
[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"
|
2024-10-09 20:15:56 +00:00
|
|
|
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 = [
|
2024-10-11 15:57:21 +00:00
|
|
|
# See requirements.txt
|
2024-10-10 16:17:24 +00:00
|
|
|
]
|
2024-10-09 20:15:56 +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",
|
2024-10-28 00:29:14 +00:00
|
|
|
"selenium",
|
2024-10-10 16:17:24 +00:00
|
|
|
]
|
2024-10-09 20:15:56 +00:00
|
|
|
|
|
|
|
[tool.hatch.version]
|
|
|
|
path = "basicswap/__init__.py"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|