25 lines
499 B
TOML
25 lines
499 B
TOML
[[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 = "*"
|
|
twine = "*"
|
|
|
|
[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"
|