-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.16 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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "labs-sphinx-theme"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "PyMC Labs", email = "info@pymc-labs.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version", "description"]
dependencies = [
"pydata-sphinx-theme>=0.15.0,<0.16",
"sphinx>=5",
]
[tool.flit.module]
name = "labs_sphinx_theme"
[project.entry-points."sphinx.html_themes"]
labs_sphinx_theme = "labs_sphinx_theme"
[project.urls]
source = "https://github.com/pymc-labs/labs-sphinx-theme"
tracker = "https://github.com/pymc-labs/labs-sphinx-theme/issues"
documentation = "https://www.pymc-labs.com"
[tool.isort]
profile = "black"