Skip to content

Commit

Permalink
setuptools script don't copy templates, fix for that
Browse files Browse the repository at this point in the history
$ python2.7 setup.py build
...
copying pyramid_debugtoolbar/panels/templates/headers.jinja2 -> build/lib/pyramid_debugtoolbar/panels/templates
copying pyramid_debugtoolbar/panels/templates/logger.jinja2 -> build/lib/pyramid_debugtoolbar/panels/templates
copying pyramid_debugtoolbar/panels/templates/performance.jinja2 -> build/lib/pyramid_debugtoolbar/panels/templates
...
  • Loading branch information
Nikolai Sevostjanov committed Aug 10, 2011
1 parent cc5e621 commit 4db4acf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Expand Up @@ -48,6 +48,12 @@
license="BSD",
packages=find_packages(),
include_package_data=True,
package_data={
'pyramid_debugtoolbar.panels': [
'*.jinja2',
'templates/*'
],
},
zip_safe=False,
install_requires=install_requires,
tests_require=install_requires,
Expand Down

0 comments on commit 4db4acf

Please sign in to comment.