Prechádzať zdrojové kódy

Adding django as a dependency.

Jason Baker 15 rokov pred
rodič
commit
709539be27
1 zmenil súbory, kde vykonal 8 pridanie a 6 odobranie
  1. 8 6
      setup.py

+ 8 - 6
setup.py

@@ -41,12 +41,14 @@ class RunTests(Command):
         os.chdir(this_dir)
 
 
-install_requires = ["django-unittest-depth",
-                    "python-dateutil",
-                    "anyjson",
-                    "carrot>=0.8.0",
-                    "django-picklefield",
-                    "billiard>=0.2.0"]
+install_requires = [
+    "django",
+    "django-unittest-depth",
+    "python-dateutil",
+    "anyjson",
+    "carrot>=0.8.0",
+    "django-picklefield",
+    "billiard>=0.2.0"]
 
 # python-daemon doesn't run on windows, so check current platform
 if platform.system() == "Windows":