forked from Jc2k/pytest-docker-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.38 KB
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "pytest_docker_tools"
version = "3.1.0"
description = "Docker integration tests for pytest"
authors = ["John Carr <john.carr@unrouted.co.uk>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/Jc2k/pytest-docker-tools"
keywords = ["devops", "docker", "pytest"]
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta"
]
[tool.poetry.dependencies]
python = "^3.6.1"
pytest = "^6.0.1"
docker = "^4.3.1"
[tool.poetry.plugins."pytest11"]
docker_tools = "pytest_docker_tools.plugin"
[tool.poetry.dev-dependencies]
isort = "^5.5.1"
black = "^20.8b1"
flake8 = "^3.8.3"
pytest-cov = "^2.10.1"
pyupgrade = "^2.7.2"
codecov = "^2.1.9"
pytest-markdown = "^1.0.0"
pytest-xdist = "^2.2.1"
[tool.black]
target-version = ["py36", "py37", "py38"]
[tool.coverage.run]
omit = ["tests/*"]
[tool.isort]
profile = "black"
indent = " "
force_sort_within_sections = "true"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
known_first_party = "pytest_docker_tools,tests"
forced_separate = "tests"
combine_as_imports = "true"
extra_standard_library = "_socket"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"