What is the best way to package a Django app so that you can make it available to other projects through pip?
Asked
Active
Viewed 154 times
1 Answers
1
-
So you package it up as described in the link and then upload it to PyPi. Is there a standard way to automate releases? – S.E.T. Aug 26 '13 at 16:36
-
you change version numbers, run setup.py sdist and setup.py upload. That's it :) – Jay Aug 27 '13 at 06:24
-
Perfect, I don't think this article existed when I ran through the tutorial a couple years ago. – S.E.T. Aug 27 '13 at 17:06