26 lines
585 B
TOML
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}
|