Skip to content

Commit

Permalink
Updated manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Aug 26, 2011
1 parent fc2caa4 commit d5cd4f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include Makefile CHANGES LICENSE AUTHORS
include Makefile CHANGES LICENSE AUTHORS run-tests.py
recursive-include artwork *
recursive-include tests *
recursive-include examples *
Expand All @@ -9,5 +9,8 @@ recursive-exclude tests *.pyc
recursive-exclude tests *.pyo
recursive-exclude examples *.pyc
recursive-exclude examples *.pyo
recursive-include flask/testsuite/static *
recursive-include flask/testsuite/templates *
recursive-include flask/testsuite/test_apps *
prune docs/_build
prune docs/_themes/.git
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ def run(self):
description='A microframework based on Werkzeug, Jinja2 '
'and good intentions',
long_description=__doc__,
packages=['flask'],
packages=['flask', 'flask.testsuite'],
package_data={
'flask.testsuite': ['test_apps/*', 'static/*', 'templates/*']
},
zip_safe=False,
platforms='any',
install_requires=[
Expand Down

0 comments on commit d5cd4f8

Please sign in to comment.