-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (33 loc) · 1.01 KB
/
pyproject.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "pygitver"
version = "0.1.1"
authors = [
{ name="Yurii Puchkov", email="[email protected]" },
]
license = {text = "GNU General Public License v3 (GPLv3)"}
description = "Manages Git Tag versions and generates ChangeLog"
keywords = ["git tag", "version", "versions", "conventional commit", "semver", "changelog", "changelogs"]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"Jinja2==3.1.2"
]
[build-system]
requires = ["setuptools>=63", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
pygitver = "pygitver.pygitver:main"
[metadata]
url = "https://github.com/panpuchkov/pygitver"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*"]