Skip to content

Commit 265f4e6

Browse files
committed
Don't scan the .tox tree
1 parent 5fefac4 commit 265f4e6

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

MANIFEST.in

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
include AUTHORS README.creole MANIFEST.in LICENSE
2-
recursive-include * *.html *.css *.js
3-
include reversion_compare/locale/*/LC_MESSAGES/django.*
1+
include AUTHORS README.creole MANIFEST.in LICENSE tox.ini
2+
recursive-include reversion_compare *.html *.css *.js *.py *.po *.mo
3+
recursive-include reversion_compare_tests *.html *.css *.js *.py
4+
include *.txt
5+
include *.yml
6+
include .coveragerc
47
recursive-exclude * *.py[co]
8+
prune .tox

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def get_authors():
202202
maintainer_email="[email protected]",
203203
url='https://github.com/jedie/django-reversion-compare/',
204204
download_url='http://pypi.python.org/pypi/django-reversion-compare/',
205-
packages=find_packages(),
205+
packages=['reversion_compare', 'reversion_compare_tests'],
206206
include_package_data=True,
207207
install_requires=[
208208
"Django>=1.8,<1.11",

0 commit comments

Comments
 (0)