]> git.parisson.com Git - django_quiz.git/commitdiff
fiddling really
authorTom Walker <tomwalker0472@gmail.com>
Mon, 30 Jun 2014 20:23:15 +0000 (21:23 +0100)
committerTom Walker <tomwalker0472@gmail.com>
Mon, 30 Jun 2014 20:23:15 +0000 (21:23 +0100)
.gitignore
README.md
setup.py

index 400b9768f03459dec8fec38802784325f6811d5e..457c8f21409675a557342847c33a317149bfca23 100644 (file)
@@ -4,3 +4,12 @@
 /manage.py
 /mysite*
 /plan.txt
+/dist/django-quiz-app-0.3.tar.gz
+/django_quiz.egg-info/PKG-INFO
+/django_quiz.egg-info/SOURCES.txt
+/django_quiz.egg-info/dependency_links.txt
+/django_quiz.egg-info/top_level.txt
+/django_quiz_app.egg-info/PKG-INFO
+/django_quiz_app.egg-info/SOURCES.txt
+/django_quiz_app.egg-info/dependency_links.txt
+/django_quiz_app.egg-info/top_level.txt
index f4b318dc7e458a0fcd41bcd445fac4aac5223e9b..39439e216cbe9e83f309a2c67f66f224f9f7cbff 100644 (file)
--- a/README.md
+++ b/README.md
@@ -35,7 +35,9 @@ It was developed using Django 1.6.5
 
 Installation
 ------------
-Pull the repo into your project and run `pip install -r requirements.txt`.
+Clone the repo with `git clone https://github.com/tomwalker/django_quiz.git`.
+
+Run `pip install -r requirements.txt`.
 
 Add `'quiz', 'multichoice', 'true_false',` to your `INSTALLED_APPS` setting.
 
index ecb045fa2b2ed12e3fee1c666efd7806ca8625ba..d66ef4f570918b047cf7910769c346d36b2e51d1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
 os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 
 setup(
-    name='django-quiz',
+    name='django-quiz-app',
     version='0.3',
     packages=['quiz', 'multichoice', 'true_false'],
     include_package_data=True,
@@ -28,4 +28,8 @@ setup(
         'Topic :: Internet :: WWW/HTTP',
         'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
     ],
+    install_requires=[
+      'django-model-utils == 2.0.3',
+      'Django >= 1.5.1',
+    ],
 )