-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "insipid-sphinx-theme"
dynamic = ["version"]
description = "An insipid Sphinx theme"
readme = "README.rst"
keywords = ["mobile-friendly"]
authors = [
{name = "Matthias Geier", email = "Matthias.Geier@gmail.com"},
]
dependencies = [
"sphinx >= 5",
"docutils >= 0.18",
"jinja2 >= 2.11", # suport for pathlib.path
]
requires-python = ">= 3.6"
classifiers = [
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Documentation :: Sphinx",
]
[project.urls]
Documentation = "https://insipid-sphinx-theme.readthedocs.io/"
Repository = "https://github.com/mgeier/insipid-sphinx-theme/"
Issues = "https://github.com/mgeier/insipid-sphinx-theme/issues"
[tool.setuptools.dynamic]
version = {attr = "insipid_sphinx_theme.__version__"}
[project.entry-points]
"sphinx.html_themes" = { insipid = "insipid_sphinx_theme" }