aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2021-01-07 08:40:19 -0600
committerAnthony Wang2021-01-07 08:40:19 -0600
commit6455a0cb966e960a5a4654057f2248772a237a43 (patch)
treef51e4a559663edca28a613a921d10d57e4dad41c
parent702a6419d111052068887e9799fde06b9edc6972 (diff)
Create pypi.md
-rw-r--r--pages/linux/pypi.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/pages/linux/pypi.md b/pages/linux/pypi.md
new file mode 100644
index 0000000..946a753
--- /dev/null
+++ b/pages/linux/pypi.md
@@ -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/*`