This commit is contained in:
Rodney, Tiara 2025-05-17 20:22:48 +02:00 committed by Tiara Rodney
commit 4cbe50253a
No known key found for this signature in database
GPG key ID: 5F43FAB4FBE5B5EB
36 changed files with 4073 additions and 0 deletions

47
pyproject.toml Normal file
View file

@ -0,0 +1,47 @@
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm[toml]"
]
build-backend = "setuptools.build_meta"
[project]
name = "byteb4rb1e-sphinxcontrib"
description = ""
authors = [
{ name = "Tiara Rodney", email = "tiara.rodney@byteb4rb1e.me" }
]
license-files = ["LICENSE"]
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Ìnformation Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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.1",
]
dynamic = ["version"]
requires-python = ">=3.8"
[project.urls]
Bitbucket = "https://bitbucket.org/byteb4rb1e/sphinxcontrib"
[tool.setuptools.packages.find]
where = ["src"]
[tool.autopep8]
[tool.setuptools_scm]