2

What is the best way to package a Django app so that you can make it available to other projects through pip?

S.E.T.
  • 137
  • 1
  • 8

1 Answers1

1

Check out the docs, they are excellent.

Jay
  • 2,519
  • 5
  • 25
  • 42
  • 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