install:
- - python setup.py bdist_egg
- - easy_install "dist/$(ls dist)"
+ - python setup.py sdist
+ - cd dist
+ - easy_install "$(ls .)"
+ - cd ..
- pip install -r requirements.txt
script:
- python setup.py test
include README.rst
recursive-include quiz/templates *
recursive-include multichoice/templates *
-recursive-include true_false/templates *
\ No newline at end of file
+recursive-include true_false/templates *
+recursive-include quiz/locale *
+recursive-include multichoice/locale *
+recursive-include true_false/locale *
+recursive-include essay/locale *
url='https://github.com/tomwalker/django_quiz',
author='Tom Walker',
author_email='tomwalker0472@gmail.com',
+ zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
],
install_requires=[
'django-model-utils == 2.0.3',
- 'Django >= 1.5.1, <= 1.7',
+ 'Django >= 1.5.1',
'Pillow == 2.5.0'
],
test_suite='runtests.runtests'