Skip to content

Commit

Permalink
Well, the joy of \python setup.py develop\... forgot to add the .js…
Browse files Browse the repository at this point in the history
… files and even the .html template from 2b66a63 to the package data.
  • Loading branch information
Christian Boos committed Jun 13, 2010
1 parent d5649eb commit b68a251
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Expand Up @@ -18,7 +18,7 @@

setup(
name = 'HudsonTrac',
version = '0.12.0.4',
version = '0.12.0.5',
author = "Ronald Tschalär",
description = "Trac Plugin which adds Hudson build events to the timeline",
maintainer = "Christian Boos",
Expand All @@ -31,8 +31,12 @@

packages = ['HudsonTrac'],
package_data = {
'HudsonTrac' : ['htdocs/*.css', 'htdocs/*.gif',
'locale/*.*', 'locale/*/LC_MESSAGES/*.*'],
'HudsonTrac': [
'htdocs/*.css', 'htdocs/*.gif', 'htdocs/*.js',
'templates/*.html',
'locale/*.*', 'locale/*/LC_MESSAGES/*.*',
'htdocs/hudsontrac/*.js',
],
},
entry_points = {
'trac.plugins' : [ 'HudsonTrac = HudsonTrac.HudsonTracPlugin' ]
Expand Down

0 comments on commit b68a251

Please sign in to comment.