Skip to content

Commit

Permalink
needed package_data in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
brosner committed Dec 30, 2010
1 parent 7959be6 commit 29c2f81
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1 +1,2 @@
include README.rst include README.rst
recursive-include biblion/templates/biblion *.xml
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@


setup( setup(
name = "biblion", name = "biblion",
version = "0.1.dev8", version = "0.1.dev10",
author = "Eldarion", author = "Eldarion",
author_email = "development@eldarion.com", author_email = "development@eldarion.com",
description = "the eldarion.com blog app intended to be suitable for site-level company and project blogs", description = "the eldarion.com blog app intended to be suitable for site-level company and project blogs",
Expand All @@ -17,6 +17,11 @@
"biblion", "biblion",
"biblion.templatetags", "biblion.templatetags",
], ],
package_data = {
"biblion": [
"templates/biblion/*.xml",
]
},
classifiers = [ classifiers = [
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Environment :: Web Environment", "Environment :: Web Environment",
Expand Down

0 comments on commit 29c2f81

Please sign in to comment.