-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathsetup.cfg
87 lines (74 loc) · 2 KB
/
setup.cfg
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
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
name = pytest-docker
version = 3.2.0
description = Simple pytest fixtures for Docker and Docker Compose based tests
long_description = file: README.md
long_description_content_type = text/markdown
keywords = docker,docker-compose,pytest
url = https://github.com/avast/pytest-docker
author = Max K., Andre Caron
author_email = maxim.kovykov@avast.com
license = MIT
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
License :: OSI Approved :: MIT License
Topic :: Utilities
Intended Audience :: Developers
Operating System :: Unix
Operating System :: POSIX
Operating System :: Microsoft :: Windows
[options]
python_requires = >=3.8
package_dir=
=src
packages=pytest_docker
install_requires =
pytest >=4.0, <9.0
attrs >=19.2.0
[options.extras_require]
docker-compose-v1 =
docker-compose >=1.27.3, <2.0
tests =
requests >=2.22.0, <3.0
mypy >=0.500, <2.000
pytest-pylint >=0.14.1, <1.0
pytest-pycodestyle >=2.0.0, <3.0
pytest-mypy >=0.10, <1.0
types-requests >=2.31, <3.0
types-setuptools >=69.0, <70.0
[options.entry_points]
pytest11 =
docker = pytest_docker
[tool:pytest]
addopts = --verbose --mypy --pycodestyle --pylint-rcfile=setup.cfg --pylint
# Configuration for pylint
[pylint.MASTER]
good-names = "logger,e,i,j,n,m,f,_"
[pylint]
disable = all
enable = unused-import,
fixme,
useless-object-inheritance,
unused-variable,
unused-argument,
unexpected-keyword-arg,
string,
unreachable,
invalid-name,
logging-not-lazy,
unnecesary-pass,
broad-except
[pycodestyle]
max-line-length=120
ignore=E4,E7,W3
[mypy]
strict = true
mypy_path = "src/pytest_docker,tests"
namespace_packages = true
warn_unused_ignores = true