Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # vim: tabstop=4 shiftwidth=4 softtabstop=4 |
| 3 | |
| 4 | # Copyright 2010 United States Government as represented by the |
| 5 | # Administrator of the National Aeronautics and Space Administration. |
| 6 | # All Rights Reserved. |
Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 7 | # |
Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 8 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 9 | # not use this file except in compliance with the License. You may obtain |
| 10 | # a copy of the License at |
Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 11 | # |
Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 13 | # |
Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 16 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 17 | # License for the specific language governing permissions and limitations |
| 18 | # under the License. |
Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 19 | |
| 20 | import setuptools |
| 21 | |
Matthew Treinish | 481466b | 2012-12-20 17:16:01 -0500 | [diff] [blame] | 22 | from tempest.openstack.common import setup as common_setup |
Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 23 | |
Matthew Treinish | 481466b | 2012-12-20 17:16:01 -0500 | [diff] [blame] | 24 | requires = common_setup.parse_requirements() |
| 25 | depend_links = common_setup.parse_dependency_links() |
Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 26 | |
| 27 | setuptools.setup(name='tempest', |
| 28 | version="2012.2", |
| 29 | description='Integration test tools', |
| 30 | author='OpenStack', |
| 31 | author_email='openstack-qa@lists.launchpad.net', |
| 32 | url='http://www.openstack.org/', |
| 33 | classifiers=['Environment :: OpenStack', |
| 34 | 'Intended Audience :: Information Technology', |
| 35 | 'Intended Audience :: System Administrators', |
| 36 | 'Intended Audience :: Developers', |
| 37 | 'License :: OSI Approved :' |
| 38 | ': Apache Software License', |
| 39 | 'Operating System :: POSIX :: Linux', |
| 40 | 'Programming Language :: Python', |
| 41 | 'Programming Language :: Python :: 2', |
| 42 | 'Programming Language :: Python :: 2.7', ], |
Matthew Treinish | 481466b | 2012-12-20 17:16:01 -0500 | [diff] [blame] | 43 | cmdclass=common_setup.get_cmdclass(), |
Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 44 | packages=setuptools.find_packages(exclude=['bin']), |
| 45 | install_requires=requires, |
| 46 | dependency_links=depend_links, |
| 47 | include_package_data=True, |
| 48 | test_suite='nose.collector', |
| 49 | setup_requires=['setuptools_git>=0.4'], |
| 50 | scripts=['bin/tempest'], |
| 51 | py_modules=[]) |