From 2ca2b4b49367d6033bdd2c5e47d17392e7aba318 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Mon, 6 Feb 2012 09:49:09 -0500 Subject: Updated tox config for multi-python testing. Change-Id: Ib1f768c6783db0e63cb51dfc767ae5a31a295c76 --- setup.py | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 2c0c917..0f7e1c1 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,18 @@ from setuptools import setup, find_packages +from openstack.common.setup import parse_requirements +from openstack.common.setup import parse_dependency_links +from openstack.common.setup import write_requirements + version = '0.1' +requires = parse_requirements(['requirements.txt', 'tools/pip-requires']) + +depend_links = parse_dependency_links(['requirements.txt', + 'tools/pip-requires']) + +write_requirements() + setup(name='openstack.common', version=version, description="Common components for Openstack", @@ -23,20 +34,8 @@ Common components for Openstack including paster templates. packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=True, - install_requires=[ - 'greenlet>=0.3.1', - 'pep8', - 'pylint', - 'eventlet', - 'PasteDeploy', - 'routes', - 'webob', - 'nose', - 'nose-exclude', - 'mock', - 'webtest', - 'lxml', - ], + install_requires=requires, + dependency_links=depend_links, entry_points=""" # -*- Entry points: -*- """, -- cgit