devstack-gate/setup.py
Bhuvan Arumugam 33fbc416ba Add tox tests/pep8 for devstack-gate scripts.
Bug: 1010610

With this commit, we could run py26, py27 and pep8 tests
against these scripts, using tox.

* .gitignore
  Ignore build files.

* MANIFEST.in
  List of files to include in sdist package.

* setup.cfg
  Setup configuration.

* setup.py
  Script to generate sdist package.

* tools/pip-requires
  Pip dependency list.

* tools/test-requires
  Extensive list of dependencies to execute tests.

* tox.ini
  Tox targets.

Change-Id: I3f14af096b3078214d0747c2ab99b0a42b5190e9
2012-06-15 23:13:29 -07:00

26 lines
828 B
Python

import os
import sys
import setuptools
setuptools.setup(
name="devstack-gate",
version="2012.2",
description="Devstack gate scripts used by Openstack CI team for testing longest line in this screen",
url='https://github.com/openstack-ci/devstack-gate',
license='Apache',
author='Openstack CI team',
author_email='openstack@lists.launchpad.net',
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
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",
)