-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 1004 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
28
29
30
31
32
33
34
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name="pytest-dockerctl",
version='0.1.alpha',
description='A pytest plugin managing containers using the docker-py API',
long_description=readme,
license='MIT',
author='Tyler Goodlet',
author_email='[email protected]',
url='https://github.com/tgoodlet/pytest-dockerctl',
platforms=['linux'],
packages=['pytest_dockerctl'],
entry_points={'pytest11': [
'dockerctl = pytest_dockerctl'
]},
zip_safe=False,
install_requires=['docker'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 3',
],
)