forked from pytest-docker-compose/pytest-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 963 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
from setuptools import setup
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="1.0.3",
author="Phoenix Zerin",
author_email="[email protected]",
url="https://github.com/Centraliyai/pytest-docker-compose",
packages=["pytest_docker_compose"],
install_requires=["docker-compose", "pytest >= 3.4"],
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",
],
)