forked from pytest-docker-compose/pytest-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1009 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
from setuptools import setup, find_packages
with open("README.rst", "r") as f:
long_description = f.read()
setup(
name="pytest-docker-compose",
description="Manages Docker containers during your integration tests",
long_description=long_description,
version="3.2.1",
author="Roald Storm",
author_email="roaldstorm@gmail.com",
url="https://github.com/pytest-docker-compose/pytest-docker-compose",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=["docker-compose", "pytest >= 3.3"],
entry_points={
"pytest11": [
"docker_compose=pytest_docker_compose:plugin",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Testing",
],
)