Repository URL to install this package:
|
Version:
0.2.1 ▾
|
rt-framework
/
setup.py
|
|---|
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='rt-framework',
version='0.2.1',
description='A regression test framework',
long_description=long_description,
url='https://github.com/docker/rt-framework',
author='The Pinata Team',
author_email='pinata@docker.com',
license='Apache',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='testing regression test framework',
packages=find_packages(),
include_package_data=True,
extras_require={
'vm': ['pyvmomi==6.0.0.2016.6'],
'remote': ['pywinrm==0.2.1']
},
tests_require=[
'flake8',
'tox'
],
# Workaround as pywinrm is incorrectly published on PyPi
entry_points={
'console_scripts': [
'rt-local=rt.local:main',
'rt-remote=rt.remote:main [Remote]',
'rt-vm=rt.vm:main [VM]',
],
},
)