Backup, Synchronization, Versioning.
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.

36 lines
734 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 = [
"tomlkit",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
# TODO
# "Homepage" = "https://github.com/pypa/sampleproject"
# "Bug Tracker" = "https://github.com/pypa/sampleproject/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"