blob: fceadba72855b61bd6db6f697c6563f81e575b7c [file] [log] [blame]
Jay Pipesa6aa5f22012-07-24 19:40:29 -04001#!/usr/bin/python
2# Copyright (c) 2012 OpenStack, LLC.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17import setuptools
18
19setuptools.setup(
20 name='tempest',
21 version="0.1",
22 description='The OpenStack Integration Test Suite',
23 license='Apache License (2.0)',
24 author='OpenStack',
25 author_email='openstack@lists.launchpad.net',
26 url='http://github.com/openstack/tempest/',
27 classifiers=[
28 'Development Status :: 4 - Beta',
29 'License :: OSI Approved :: Apache Software License',
30 'Operating System :: POSIX :: Linux',
31 'Programming Language :: Python :: 2.6',
32 'Environment :: No Input/Output (Daemon)',
33 ],
34 py_modules=[])