-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
32 lines (28 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gitlogstats"
description = "Track developers' contributions to one or more git repositories within a particular time range."
version = "1.0.4"
authors = [
{ name="Foo Barstein", email="[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["git", "developer", "contribution", "analysis", "report", "log"]
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/git-developer-contribution-analysis"
"Repository" = "https://github.com/bloombar/git-developer-contribution-analysis.git"
"Bug Tracker" = "https://github.com/bloombar/git-developer-contribution-analysis/issues"
[project.scripts]
gitlogstats = "gitlogstats.__main__:main"