From 265f4e6f877f024e99cea7c2cf316e2944f01ea9 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Mon, 24 Oct 2016 08:59:53 +0200 Subject: [PATCH] Don't scan the .tox tree --- MANIFEST.in | 10 +++++++--- setup.py | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index f806ac6..66064de 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,8 @@ -include AUTHORS README.creole MANIFEST.in LICENSE -recursive-include * *.html *.css *.js -include reversion_compare/locale/*/LC_MESSAGES/django.* +include AUTHORS README.creole MANIFEST.in LICENSE tox.ini +recursive-include reversion_compare *.html *.css *.js *.py *.po *.mo +recursive-include reversion_compare_tests *.html *.css *.js *.py +include *.txt +include *.yml +include .coveragerc recursive-exclude * *.py[co] +prune .tox \ No newline at end of file diff --git a/setup.py b/setup.py index fc8a32c..af41140 100755 --- a/setup.py +++ b/setup.py @@ -202,7 +202,7 @@ def get_authors(): maintainer_email="django-reversion-compare@jensdiemer.de", url='https://github.com/jedie/django-reversion-compare/', download_url='http://pypi.python.org/pypi/django-reversion-compare/', - packages=find_packages(), + packages=['reversion_compare', 'reversion_compare_tests'], include_package_data=True, install_requires=[ "Django>=1.8,<1.11",