summaryrefslogtreecommitdiffstats
path: root/openshift-storage-libs/setup.py
blob: 09e44ef621931e5f0161f239f07c6ef68277bad4 (plain)
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
28
29
30
31
32
33
#!/usr/bin/python
from setuptools import setup, find_packages

version = '0.2'
name = 'openshift-storage-libs'

setup(
    name=name,
    version=version,
    description='Red Hat Openshift Container Storage Libraries',
    author='Red Hat, Inc.',
    author_email='cns-qe@redhat.com',
    packages=find_packages(),
    include_package_data=True,
    classifiers=[
        'Development Status :: 3 - Alpha'
        'Intended Audience :: QE, Developers'
        'Operating System :: POSIX :: Linux'
        'Programming Language :: Python'
        'Programming Language :: Python :: 2'
        'Programming Language :: Python :: 2.6'
        'Programming Language :: Python :: 2.7'
        'Programming Language :: Python :: 3'
        'Programming Language :: Python :: 3.7'
        'Topic :: Software Development :: Testing'
    ],
    install_requires=['glusto', 'ddt', 'mock', 'rtyaml', 'jsondiff', 'six',
                      'simplejson', 'prometheus_client>=0.4.2',
                      'pytest-custom-exit-code', 'pyvmomi'],
    dependency_links=[
        'http://github.com/loadtheaccumulator/glusto/tarball/master#egg=glusto'
    ],
)