py-utils/Pipfile
2026-03-21 17:13:02 +01:00

26 lines
585 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 = "*"
[requires]
python_version = "3"
[scripts]
"dist" = "python3 -m build"
"dist:attestations" = "python3 -m pypi_attestations sign dist/*"
"dist:publish" = "python3 -m twine upload --sign --repository tiararodney dist/*"
"test:static" = "tox run -m static"
"test:unit" = "tox run -m unit"
"test:integration" = "tox run -m integration"
[packages]
"byteb4rb1e.utils" = {file = ".", editable = true}