forked from dcos/dcos-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 774 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
from setuptools import setup
setup(
name='dcos-test-utils',
version='0.1',
description='Backend for the dcos_api_session object used as a test harness in the DC/OS integration tests',
url='https://dcos.io',
author='Mesosphere, Inc.',
author_email='[email protected]',
license='apache2',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
packages=['dcos_test_utils', 'pytest_dcos'],
install_requires=[
'py',
'pytest',
'requests',
'retrying'],
entry_points={
'pytest11': [
'pytest-dcos = pytest_dcos.plugin']}
)