forked from tox-dev/tox-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 822 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 822 Bytes
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
"""
A plugin for tox_ which runs one or more Docker_ containers during the test
run.
See full documentation in the README_.
.. _tox: https://tox.readthedocs.io/en/latest/
.. _Docker: https://www.docker.com/
.. _README: https://github.com/tox-dev/tox-docker/blob/master/README.md
"""
from setuptools import setup
setup(
name="tox-docker",
description="Launch a docker instance around test runs",
long_description=__doc__,
url="https://github.com/tox-dev/tox-docker",
maintainer="Dan Crosta",
maintainer_email="dcrosta@late.am",
install_requires=[
"docker>=2.3.0,<5.0",
"tox>=2.7.0,<4.0",
],
py_modules=["tox_docker"],
entry_points={"tox": ["docker = tox_docker"]},
setup_requires=["vcversioner"],
vcversioner={"version_module_paths" : ["_version.py"]},
)