-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 1017 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gitcommitlogger"
description = "Logs statistics for specific commits in CSV form and optionally sends them as JSON to a web api."
version = "1.2.5"
authors = [
{ name="Foo Barstein", email="[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["git", "developer", "commits", "analysis", "report", "logging"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
"Homepage" = "https://github.com/bloombar/gitcommitlogger"
"Repository" = "https://github.com/bloombar/gitcommitlogger.git"
"Bug Tracker" = "https://github.com/bloombar/gitcommitlogger/issues"
[project.scripts]
gitcommitlogger = "gitcommitlogger.__main__:main"