Browse Source

some notes about publishing so I don't forget

kmpm 7 years ago
parent
commit
a85aeb66e9
1 changed files with 12 additions and 0 deletions
  1. 12 0
      doc/DEVELOP.md

+ 12 - 0
doc/DEVELOP.md

@@ -30,3 +30,15 @@ Linux
 export SERIALPORT=/dev/ttyUSB0
 ```
 
+
+Publishing
+----------
+* http://peterdowns.com/posts/first-time-with-pypi.html
+
+```bash
+#test upload
+python setup.py sdist upload -r pypitest
+
+#real upload
+python setup.py sdist upload -r pypi
+```