aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-04-20 12:15:10 -0400
committerTeddy Wing2014-04-20 12:15:10 -0400
commitccc9d18dc79084bdb46768f56e2c3c82f13770e9 (patch)
tree881f32a4b767354f7425c8dd00bd9808acbbec90
parentddbdb084217789fe0952e333499548fd402be6a8 (diff)
downloaddjango-sneak-peek-ccc9d18dc79084bdb46768f56e2c3c82f13770e9.tar.bz2
Add requirements to package setup.py
-rw-r--r--setup.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 520b4fb..58f442e 100644
--- a/setup.py
+++ b/setup.py
@@ -14,5 +14,11 @@ setup(
author_email='',
include_package_data=True,
packages=find_packages(),
+ install_requires=[
+ 'Django >= 1.4'
+ ],
+ extras_require={
+ 'South': ['South']
+ },
classifiers=[],
) \ No newline at end of file