catmeow

Simple CLI-application demostrating packaging and distibution


Keywords
packaging, distribution, cli-tool
License
MIT
Install
pip install catmeow==0.2.2

Documentation

Catmeow simple python package

This repo serves as an instruction on how to publish packaged to PyPI

Steps

configuring env

If you want to avoid entering your username, you can configure TestPyPI in your $HOME/.pypirc:

[testpypi]
username = <USER>
password = <PASS>

build

python -m pep517.build .

upload to test pypi

twine upload --repository testpypi dist/*

download from test pypi

pip install --index-url https://test.pypi.org/simple/ catmeow

uninstall

pip uninstall catmeow

References

Instruction @medium