Skip to content

Commit

Permalink
Prefer find_packages to exclude tests instead of using MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro Molina authored and Alessandro Molina committed Mar 19, 2015
1 parent 11a4838 commit 106309a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
global-exclude *.pyc
recursive-exclude tgext/mailer/tests *
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author_email='amol@turbogears.org',
url='https://github.com/amol-/tgext.mailer',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
packages=find_packages(exclude=['ez_setup', 'examples', 'tgext.mailer.tests']),
namespace_packages = ['tgext'],
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 106309a

Please sign in to comment.