66 lines
1.7 KiB
TOML
Executable file
66 lines
1.7 KiB
TOML
Executable file
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
"wheel",
|
|
"setuptools-scm[toml]"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "byteb4rb1e.sphinxcontrib.theme.web20"
|
|
description = "Functional theme for Sphinx documentation generator"
|
|
authors = [
|
|
{ name = "Tiara Rodney", email = "tiara.rodney@administratrix.de" }
|
|
]
|
|
license-files = ["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 >= 5.0",
|
|
"byteb4rb1e.sphinxcontrib.ext @ git+https://bitbucket.org/byteb4rb1e/sphinxcontrib.git@a4fd97b55a2bff04b162e2f00dba148b0303f833"
|
|
]
|
|
dynamic = ["version"]
|
|
requires-python = ">=3.9"
|
|
|
|
[project.entry-points."sphinx.html_themes"]
|
|
web20 = "byteb4rb1e.sphinxcontrib.theme.web20"
|
|
|
|
[tool.setuptools.package-data]
|
|
# relative to root dir of package, NOT repository
|
|
"byteb4rb1e.sphinxcontrib.theme.web20" = [
|
|
"*.tar",
|
|
"*.tar.sha256",
|
|
"theme.toml",
|
|
"**/*.html"
|
|
]
|
|
|
|
[project.urls]
|
|
Bitbucket = "https://bitbucket.org/byteb4rb1e/sphinxcontrib-theme-web20"
|
|
GitHub = "https://github.com/ByteB4rb1e/sphinxcontrib-theme-web20"
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
|
|
[tool.autopep8]
|
|
max_line_length = 80
|
|
aggressive = 3
|
|
recursive = true
|
|
in-place = true
|
|
|
|
[tool.setuptools_scm]
|
|
|