This repository was archived by the owner on May 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·56 lines (49 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
executable file
·56 lines (49 loc) · 1.36 KB
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
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm[toml]"
]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx-theme-ref"
description = "Tiara's Sphinx documentation theme reference"
authors = [
{ name = "Tiara Rodney", email = "tiara.rodney@administratrix.de" }
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"sphinx >= 8.0,<9.0",
]
dynamic = ["version"]
requires-python = ">=3.8"
[project.entry-points."sphinx.html_themes"]
sphinx_theme_ref = "sphinx_theme_ref"
[project.urls]
Bitbucket = "https://bitbucket.org/tiaracodes/sphinx-theme-ref"
GitHub = "https://github.com/oxbqkwwxfrqccwtg/sphinx-theme-ref"
[tool.mypy]
strict = true
[tool.autopep8]
max_line_length = 80
aggressive = 3
recursive = true
in-place = true
[tool.setuptools_scm]