Skip to content

Commit

Permalink
Fix setup so django-debug-toolbar panel template is included in package
Browse files Browse the repository at this point in the history
  • Loading branch information
rlskoeser committed Apr 25, 2016
1 parent 017fc4c commit e69030a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
include *LICENSE*
include CHANGELOG
include CHANGELOG*
include README*
recursive-include doc Makefile *.rst *.py
recursive-include test *.py
recursive-include test/test_existdb *.py
recursive-include test/test_existdb/exist_fixtures *
recursive-include eulexistdb/templates *
recursive-include eulexistdb/templates/eulexistdb *.html
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@
description='Idiomatic access to the eXist-db XML Database using XPath and XQuery',
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
keywords='eXist-db XQuery'
keywords='eXist-db XQuery',
include_package_data=True,
package_data={'eulexistdb': ['eulexistdb/templates/eulexistdb/*.html']},
)

0 comments on commit e69030a

Please sign in to comment.