2020-10-03 01:05:43 +02:00
|
|
|
# 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
|
2020-10-03 20:46:13 +02:00
|
|
|
twine upload --skip-existing dist/*
|
2020-10-03 01:05:43 +02:00
|
|
|
```
|