py-utils/Pipfile
2026-03-27 19:00:09 +01:00

28 lines
627 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
setuptools-scm = "~=8.2.0"
build = "*"
pipenv = "*"
tox = "*"
twine = "*"
pypi-attestations = "*"
autopep8 = "*"
[requires]
python_version = "3"
[scripts]
"dist" = "python3 -m build"
"dist:attestations" = "python3 -m pypi_attestations sign dist/*"
"dist:publish:tiararodney" = "python3 -m twine upload --sign --repository tiararodney dist/*"
"test" = "tox"
"test:static" = "tox run -m static"
"test:unit" = "tox run -m unit"
"test:integration" = "tox run -m integration"
[packages]
"byteb4rb1e.utils" = {file = ".", editable = true}