blob: 1f071bb3dcaff95f76ed43c0a5ab839fef0f19aa [file] [log] [blame]
Attila Fazekas5abb2532012-12-04 11:30:49 +01001#!/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 Pipesa6aa5f22012-07-24 19:40:29 -04007#
Attila Fazekas5abb2532012-12-04 11:30:49 +01008# 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 Pipesa6aa5f22012-07-24 19:40:29 -040011#
Attila Fazekas5abb2532012-12-04 11:30:49 +010012# http://www.apache.org/licenses/LICENSE-2.0
Jay Pipesa6aa5f22012-07-24 19:40:29 -040013#
Attila Fazekas5abb2532012-12-04 11:30:49 +010014# 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 Pipesa6aa5f22012-07-24 19:40:29 -040019
20import setuptools
21
Matthew Treinish481466b2012-12-20 17:16:01 -050022from tempest.openstack.common import setup as common_setup
Attila Fazekas5abb2532012-12-04 11:30:49 +010023
Matthew Treinish481466b2012-12-20 17:16:01 -050024requires = common_setup.parse_requirements()
25depend_links = common_setup.parse_dependency_links()
Attila Fazekas5abb2532012-12-04 11:30:49 +010026
27setuptools.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 Treinish481466b2012-12-20 17:16:01 -050043 cmdclass=common_setup.get_cmdclass(),
Attila Fazekas5abb2532012-12-04 11:30:49 +010044 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=[])