Fix dependency on anyjson

The main requirements.txt and the one for documentation
had different specification for anyjson.

This change also makes explicit the fact that we
do not require anything other than what is listed
in pip-requires to install. The library function
looks at requirements.txt, too, which we don't have
and should not use.

Change-Id: I8e79ad0803e3a9ebeb2a1dae30b2e5abdbbe8276
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
This commit is contained in:
Doug Hellmann
2012-09-27 13:26:01 -04:00
parent fa44e3167c
commit d2e29db5d9
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ import setuptools
from ceilometer.openstack.common import setup
requires = setup.parse_requirements()
depend_links = setup.parse_dependency_links()
depend_links = setup.parse_dependency_links(['tools/pip-requires.txt'])
setuptools.setup(
name='ceilometer',