Skip to content

Commit

Permalink
Really exclude tests from python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Feb 16, 2016
1 parent c930829 commit bbcfb62
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions src/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
include LICENSE
include README.rst
recursive-include pretix/static *
recursive-include pretix/locale *
recursive-include pretix/base/templates *
recursive-include pretix/control/templates *
recursive-include pretix/plugins/banktransfer/templates *
recursive-include pretix/plugins/paypal/templates *
recursive-include pretix/plugins/pretixdroid/templates *
recursive-include pretix/plugins/pretixdroid/static *
recursive-include pretix/plugins/sendmail/templates *
recursive-include pretix/plugins/statistics/templates *
recursive-include pretix/plugins/statistics/static *
recursive-include pretix/plugins/stripe/templates *
recursive-include pretix/plugins/stripe/static *
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@
'stripe': ['stripe>=1.22,<1.23']
},

packages=find_packages(exclude=['tests']),
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
)

0 comments on commit bbcfb62

Please sign in to comment.