Initial Oslo sync for Tempest.
This patch syncs cfg, iniparser, and setup from oslo.
Additionally, to avoid a name conflict tempest.openstack was
renamed tempest.clients.
Also, the duplicate copy of setup.py in tempest.common was removed
and all references to it were updated.
Change-Id: I6ed3a97e35ce73b820f7a436214480051ed6528f
diff --git a/setup.py b/setup.py
index 2e046ea..1f071bb 100755
--- a/setup.py
+++ b/setup.py
@@ -19,10 +19,10 @@
import setuptools
-from tempest.common import setup
+from tempest.openstack.common import setup as common_setup
-requires = setup.parse_requirements()
-depend_links = setup.parse_dependency_links()
+requires = common_setup.parse_requirements()
+depend_links = common_setup.parse_dependency_links()
setuptools.setup(name='tempest',
version="2012.2",
@@ -40,7 +40,7 @@
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7', ],
- cmdclass=setup.get_cmdclass(),
+ cmdclass=common_setup.get_cmdclass(),
packages=setuptools.find_packages(exclude=['bin']),
install_requires=requires,
dependency_links=depend_links,