From: Рустам Кашапов Date: Fri, 3 Oct 2014 14:13:06 +0000 (+0400) Subject: distribution building is changed from egg to source X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=455b1eef42d189d8efb474fef81d17add276586d;p=django_quiz.git distribution building is changed from egg to source --- diff --git a/.travis.yml b/.travis.yml index 34278d9..c7510e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,10 @@ env: 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 diff --git a/MANIFEST.in b/MANIFEST.in index ce53fe9..30c5d71 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,4 +2,8 @@ include README.md 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 * diff --git a/setup.py b/setup.py index aa19d56..ecb9591 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ setup( url='https://github.com/tomwalker/django_quiz', author='Tom Walker', author_email='tomwalker0472@gmail.com', + zip_safe=False, classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', @@ -27,7 +28,7 @@ setup( ], 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'