PyPI packages
Upload Python wheels and sdists with Cuitty Registry.
Cuitty Registry supports PyPI-compatible uploads and Simple API installation. Package names are normalized before storage, while namespace ownership remains a separate Registry policy decision.
Upload with Twine
python -m twine upload \
--repository-url https://registry.example.com/pypi/ \
dist/*
Install from the Simple API:
pip install --index-url https://registry.example.com/pypi/simple/ my-package
.pypirc
[distutils]
index-servers =
cuitty
[cuitty]
repository = https://registry.example.com/pypi/
username = __token__
password = ${CUITTY_REGISTRY_TOKEN}
Then upload with:
python -m twine upload --repository cuitty dist/*
Yanking a version hides it from normal resolution without deleting the file unless an operator explicitly removes the artifact.
Previous
Cargo crates
Next
OCI and Docker images