-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=62.6", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "gitstats"
description = "GitStats - Visualize Your Git Repositories"
readme = "README.md"
keywords = ["git", "gitstats", "statistics", "git history"]
authors = [
{ name = "Xianpeng Shen", email = "xianpeng.shen@gmail.com" },
{ name = "Heikki Hokkanen", email = "hoxu@users.sf.net" },
]
requires-python = ">=3.9"
dynamic = ["version"]
classifiers = [
# https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
[project.scripts]
gitstats = "gitstats.main:main"
[project.urls]
source = "https://github.com/shenxianpeng/gitstats"
tracker = "https://github.com/shenxianpeng/gitstats/issues"
homepage = "https://shenxianpeng.github.io/gitstats/main/index.html"
[tool.setuptools]
zip-safe = false
packages = ["gitstats"]
[tool.setuptools_scm]
# It would be nice to include the commit hash in the version, but that
# can't be done in a PEP 440-compatible way.
version_scheme= "no-guess-dev"
# Test PyPI does not support local versions.
local_scheme = "no-local-version"
fallback_version = "0.0.0"
[tool.mypy]
show_error_codes = true
show_column_numbers = true