From 63ba97ca2cb5991fc3572273b076225cc24d3926 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sat, 3 Oct 2020 01:05:43 +0200 Subject: [PATCH] Added notes on building python packages for pypi. --- .../Dokumente/programming/python-building.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 arch-config/Dokumente/programming/python-building.md diff --git a/arch-config/Dokumente/programming/python-building.md b/arch-config/Dokumente/programming/python-building.md new file mode 100644 index 00000000..97e9e66a --- /dev/null +++ b/arch-config/Dokumente/programming/python-building.md @@ -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/* +```