Skip to content

Commit

Permalink
Fixing tests_require in setup.py
Browse files Browse the repository at this point in the history
The attribute need only to specify *additional* dependencies for running
tests. Please see http://packages.python.org/distribute/setuptools.html
for details.
  • Loading branch information
JensRantil committed Jun 12, 2012
1 parent dfabd36 commit d278079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
packages = find_packages(), packages = find_packages(),
install_requires = requires, install_requires = requires,
extras_require = {'iterparse':['cElementTree >= 1.0.2']}, extras_require = {'iterparse':['cElementTree >= 1.0.2']},
tests_require = requires + ['mock >= 0.5.0'], tests_require = ['mock >= 0.5.0'],
include_package_data = True, include_package_data = True,
zip_safe = False, zip_safe = False,
namespace_packages = ['supervisor'], namespace_packages = ['supervisor'],
Expand Down

0 comments on commit d278079

Please sign in to comment.