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

24
Pipfile Normal file
View file

@ -0,0 +1,24 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
byteb4rb1e_sphinxcontrib = { editable = true, path = '.'}
[dev-packages]
sphinx = "*"
setuptools-scm = "*"
pipenv = "*"
tox = "*"
build = "*"
[requires]
python_version = "3"
[scripts]
"dist" = "python3 -m build --outdir dist/"
"doc" = "sphinx-build --builder html docs/ build/doc/"
"test-static" = "tox run -m static"
"test-unit" = "tox run -m unit"
"test-integration" = "tox run -m integration"