mirror of
https://github.com/basicswap/basicswap.git
synced 2025-05-16 01:24:39 +00:00
Bumps [black](https://github.com/psf/black) from 24.10.0 to 25.1.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/24.10.0...25.1.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[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"}
|
|
requires-python = ">=3.9"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Security :: Cryptography",
|
|
]
|
|
dependencies = [
|
|
# See requirements.txt
|
|
]
|
|
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"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"codespell",
|
|
"flake8",
|
|
"pip-tools",
|
|
"pytest",
|
|
"ruff",
|
|
"black==25.1.0",
|
|
"selenium",
|
|
]
|
|
|
|
[tool.hatch.version]
|
|
path = "basicswap/__init__.py"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.ruff]
|
|
exclude = ["basicswap/contrib","basicswap/interface/contrib"]
|