-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
80 lines (68 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "grg-sphinx-theme"
description = "A GRG sphinx theme to use across GRG projects"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"sphinx>=4",
"pydata-sphinx-theme==0.15.4",
]
license = { file = "LICENSE" }
# TODO: Add email of the maintainer
authors = [
{ name = "maharshi-gor", email = "[email protected]" },
{ name = "skoudoro", email = "[email protected]" },
]
maintainers = [
{ name = "GRG web team", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.entry-points]
"sphinx.html_themes" = { grg_sphinx_theme = "grg_sphinx_theme" }
[project.urls]
"Homepage" = "https://github.com/GRG-Projects/grg-sphinx-theme"
documentation = "https://github.com/GRG-Projects/grg-sphinx-theme/blob/main/README.md"
source = "https://github.com/GRG-Projects/grg-sphinx-theme"
download = "https://pypi.org/project/grg-sphinx-theme/#files"
tracker = "https://github.com/GRG-Projects/grg-sphinx-theme/issues"
[project.optional-dependencies]
all = ["grg-sphinx-theme[dev,docs,style,test]"]
dev = ["gitpython", "twine", "grg-sphinx-theme[style]", "wheel", "build"]
style = ["flake8", "isort"]
test = [
"coverage",
"pytest !=5.3.4",
"pytest-cov",
"pytest-doctestplus",
"pytest-httpserver",
"pytest-xdist",
"coverage",
"coveralls",
"codecov",
]
docs = [
"numpydoc",
"sphinx ~= 5.3",
"texext",
"tomli; python_version < \"3.11\"",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/grg_sphinx_theme/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["src/grg_sphinx_theme"]
[tool.hatch.build.targets.wheel.sources]
"src" = ""