-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1.24 KB
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
42
43
[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.6"
authors = [
{ name="Foo Barstein", email="foo.barstein@onepotcooking.com" },
]
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", "pytest-cov", "coverage"]
[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"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=gitcommitlogger --cov-report=term-missing"
[tool.coverage.run]
source = ["gitcommitlogger"]
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true