forked from openstack-archive/devstack-gate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 897 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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='[email protected]',
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",
)