Create pypi.md

This commit is contained in:
Anthony Wang 2021-01-07 08:40:19 -06:00
parent 702a6419d1
commit 6455a0cb96
Signed by: a
GPG key ID: 6FD3502572299774

12
pages/linux/pypi.md Normal file
View file

@ -0,0 +1,12 @@
# Maintaining PyPI packages
> Maintaining packages on the Python Package Index
> More information: <https://packaging.python.org/tutorials/packaging-projects/>
- Build the package:
`python3 setup.py sdist bdist_wheel`
- Upload the package to the PyPI:
`twine upload dist/*`