-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (65 loc) · 1.69 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
authors = [
{name = "John Carr", email = "john.carr@unrouted.co.uk"},
]
license = {text = "Apache-2.0"}
requires-python = "<4.0.0,>=3.9.0"
dependencies = [
"pytest>=6.0.1",
"docker>=4.3.1",
]
name = "pytest_docker_tools"
description = "Docker integration tests for pytest"
readme = "README.md"
keywords = [
"devops",
"docker",
"pytest",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
]
version = "3.1.9"
[project.urls]
homepage = "https://github.com/Jc2k/pytest-docker-tools"
[project.entry-points.pytest11]
docker_tools = "pytest_docker_tools.plugin"
[dependency-groups]
dev = [
"pytest-cov<3.0.0,>=2.10.1",
"codecov<3.0.0,>=2.1.9",
"pytest-markdown<2.0.0,>=1.0.0",
"pytest-xdist<3.0.0,>=2.2.1",
"coverage[toml]<7.0.0,>=6.3.1",
"ruff>=0.10.0",
"pre-commit==3.7.1",
"pre-commit-hooks==4.6.0",
"codespell==2.3.0",
]
[tool.coverage.run]
omit = ["tests/*"]
[tool.setuptools]
include-package-data = true
platforms = ["any"]
zip-safe = false
[tool.setuptools.packages.find]
include = ["pytest_docker_tools*"]
namespaces = false
[tool.setuptools.package-data]
pytest_docker_tools = ["contexts/scratch/Dockerfile"]
[tool.distutils.bdist_wheel]
universal = true
[tool.semantic_release]
version_toml = [
"pyproject.toml:project.version",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"