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",