Added notes on building python packages for pypi.

This commit is contained in:
RealStickman 2020-10-03 01:05:43 +02:00
parent 2720475e7d
commit 63ba97ca2c

View File

@ -0,0 +1,13 @@
# python building for pypi
Create a setup.py file.
Execute in main program directory.
```bash
python setup.py bdist_wheel sdist
```
Upload to pypi
```bash
twine upload dist/*
```