You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
750 B
37 lines
750 B
[project]
|
|
name = "bsv"
|
|
authors = [
|
|
{name="Simon Boyé", email="sim.boye@gmail.com"},
|
|
]
|
|
description = "Backup, Synchronization, Versioning."
|
|
readme = "README.md"
|
|
# Might relax this in the future, but requires testing
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
# TODO
|
|
]
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
"fastcdc",
|
|
"rich",
|
|
"tomlkit",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.draklia.net/draklaw/pybsv"
|
|
"Bug Tracker" = "https://git.draklia.net/draklaw/pybsv/issues"
|
|
|
|
[project.scripts]
|
|
bsv = "bsv.main:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools_scm]
|
|
version_file = "src/bsv/_version.py"
|
|
|