From 7ed446f59596ccf4ad8b974040dd9131c77a2a43 Mon Sep 17 00:00:00 2001 From: Tom Walker Date: Mon, 30 Jun 2014 21:23:15 +0100 Subject: [PATCH] fiddling really --- .gitignore | 9 +++++++++ README.md | 4 +++- setup.py | 6 +++++- 3 files changed, 17 insertions(+), 2 deletions(-) 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', + ], ) -- 2.39.5