Skip to content

Commit

Permalink
update setup.py and MANIFEST.in to include all relevant files
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Mar 12, 2010
1 parent 849705d commit 0fc61b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -8,6 +8,7 @@ include docs/images/icon.blend docs/images/Makefile
include docs/epyrun docs/gen-reference docs/Makefile
include docs/version.py

include buildbot/db/schema/tables.sql
include buildbot/scripts/sample.cfg
include buildbot/status/web/files/*
include buildbot/status/web/templates/*.html buildbot/status/web/templates/*.xml
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -202,8 +202,10 @@ def finalize_options(self):
"buildbot.test",
"buildbot.test.fake",
"buildbot.test.unit",
"buildbot.test.regressions",
],
'data_files': [("buildbot", ["buildbot/buildbot.png"]),
include("buildbot/db/schema", "*.sql"),
("buildbot/clients", ["buildbot/clients/debug.glade"]),
("buildbot/status/web/files",
["buildbot/status/web/files/default.css",
Expand All @@ -212,7 +214,6 @@ def finalize_options(self):
]),
include("buildbot/status/web/templates", '*.html'),
("buildbot/scripts", ["buildbot/scripts/sample.cfg"]),
include("buildbot/db/schema", "*.sql"),
],
'scripts': scripts,
'cmdclass': {'install_data': install_data_twisted,
Expand Down
1 change: 1 addition & 0 deletions test-dist.sh
Expand Up @@ -31,6 +31,7 @@ for f in `git ls-files`; do
echo $f | grep -q "\.git" && continue
echo $f | grep -q "^docs/PyCon" && continue
echo $f | grep -q "^twisted" && continue
echo $f | grep -q "^buildbot/broken_test" && continue
if ! grep -q $f distfiles; then
echo "NOT FOUND: $f";
fi
Expand Down

0 comments on commit 0fc61b8

Please sign in to comment.