Metadata-Version: 2.1
Name: catmeow
Version: 0.2.2
Summary: Simple CLI-application demostrating packaging and distibution
Home-page: https://github.com/zjor/catmeow
License: MIT
Keywords: packaging,distribution,cli-tool
Author: Sergey Royz
Author-email: zjor.se@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: colorama (>=0.4.4,<0.5.0)
Requires-Dist: setuptools (>=50.3.2,<51.0.0)
Project-URL: Documentation, https://zjor.medium.com/packaging-a-runnable-python-module-de43ac12148
Project-URL: Repository, https://github.com/zjor/catmeow
Description-Content-Type: text/markdown

# 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](https://zjor.medium.com/packaging-a-runnable-python-module-de43ac12148)

