From: Tom Walker Date: Mon, 30 Jun 2014 20:23:15 +0000 (+0100) Subject: fiddling really X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=7ed446f59596ccf4ad8b974040dd9131c77a2a43;p=django_quiz.git fiddling really --- diff --git a/.gitignore b/.gitignore index 400b976..457c8f2 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/README.md b/README.md index f4b318d..39439e2 100644 --- 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. diff --git a/setup.py b/setup.py index ecb045f..d66ef4f 100644 --- 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', + ], )