File: pyproject.toml

package info (click to toggle)
python-versioneer 0.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 648 kB
  • sloc: python: 2,656; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 449 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[build-system]
requires = ["setuptools>=61.0", "versioneer[toml] @ @REPOROOT@"]
build-backend = "setuptools.build_meta"

[project]
name = "demo"
authors = [
  { name="Example Author", email="author@example.com" },
]
description = "Demo"
requires-python = ">=3.7"
dynamic = ["version"]

[tool.versioneer]
VCS = "@VCS@"
versionfile_source = "src/demo/_version.py"
versionfile_build = "demo/_version.py"
tag_prefix = "demo-"
parentdir_prefix = "demo-"