Metadata-Version: 2.1
Name: dammy7878-pixegami-hello
Version: 0.5.0
Description-Content-Type: text/markdown

## Publish to PYPI

To publish your python package to PYPI, you can use the twine tool.



```bash

python setup.py sdist bdist_wheel 

# Local package test
pip install dist/pixegami_hello-0.4-py3-none-any.whl 

export TWINE_USERNAME=__token__
export TWINE_PASSWORD=pypi-XXXXXXXXX

$twine upload dist/*

## Recomended to upload to testpypi repo first
-> Create an account on https://test.pypi.org/

$twine upload --repository testpypi dist/*


## Install from the test repo.
$pip install \
    --index-url https://test.pypi.org/simple/ \
    --no-deps example-package-YOUR-USERNAME-HERE
```
