Skip to content

Commit

Permalink
setup.py: include benchmarks directory in install
Browse files Browse the repository at this point in the history
This allows djangobench to run outside of a git checkout; previously the
benchmarks directory was omitted.
  • Loading branch information
acdha committed Jan 24, 2011
1 parent e07046d commit eba2835
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE
include README.rst
recursive-include djangobench/benchmarks *
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ def read(fname):
author = 'Jacob Kaplan-Moss',
author_email = 'jacob@jacobian.org',
packages = find_packages(),
include_package_data = True,
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand All @@ -30,4 +32,4 @@ def read(fname):
entry_points = {
'console_scripts': ['djangobench = djangobench.main:main']
}
)
)

0 comments on commit eba2835

Please sign in to comment.