-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 774 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (23 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "git-version-utils"
dynamic = ["version"]
description = "Extract version information from a Git repository and output as environment variables"
readme = "README.md"
authors = [
{ name = "Mikhail Milovidov", email = "synacker@yandex.ru" },
]
license = "MIT"
keywords = ["git", "version", "build", "ci", "cd"]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/synacker/git_version_utils"
Repository = "https://github.com/synacker/git_version_utils"
[project.scripts]
git-version = "git_version.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "git_version._version.__version__" }