-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 990 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 990 Bytes
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "github-vanity"
authors = [{ name="Ivan Habunek", email="ivan@habunek.com" }]
description = "Write to your GitHub activity chart"
keywords=["github", "vanity", "activity", "chart", "rockstar"]
readme = "README.rst"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
]
dependencies = [
"GitPython>=3.0.0",
]
[tool.setuptools]
packages = ["github_vanity"]
[tool.setuptools_scm]
[project.optional-dependencies]
dev = [
"build",
"twine",
]
[project.urls]
"Homepage" = "https://github.com/ihabunek/github-vanity"
[project.scripts]
vanity = "github_vanity.console:main"
[tool.pyright]
include = ["github_vanity"]
typeCheckingMode = "strict"