/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
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.
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,
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
+ install_requires=[
+ 'django-model-utils == 2.0.3',
+ 'Django >= 1.5.1',
+ ],
)