Files
devstack-gate/setup.py
James E. Blair 91338cc4f4 Handle openstack-ci to openstack-infra move.
And zuul move.

Change-Id: I9819e9310943ea75b5fa8d325a49fdba97ba6752
2012-12-16 10:31:44 -08:00

28 lines
897 B
Python

import os
import sys
import setuptools
from devstackgate.openstack.common import setup as common_setup
setuptools.setup(
name="devstack-gate",
version="2012.2",
description="Devstack gate scripts used by Openstack CI team",
url='https://github.com/openstack-infra/devstack-gate',
license='Apache',
author='Openstack CI team',
author_email='openstack@lists.launchpad.net',
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
cmdclass=common_setup.get_cmdclass(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
test_suite="nose.collector",
)