forked from iterative/pytest-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
97 lines (90 loc) · 2.13 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
88
89
90
91
92
93
94
95
96
97
[metadata]
description = pytest servers
name = pytest-servers
long_description = file: README.rst
long_description_content_type = text/x-rst
license = Apache-2.0
license_file = LICENSE
url = https://github.com/iterative/pytest-servers
platforms=any
authors = Iterative
maintainer_email = [email protected]
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
Development Status :: 3 - Alpha
Framework :: Pytest
Intended Audience :: Developers
[options]
python_requires = >=3.8
zip_safe = False
package_dir=
=src
packages = find:
install_requires=
pytest>=6.2
requests
fsspec
universal-pathlib==0.0.21
filelock>=3.3.2
[options.entry_points]
pytest11 =
pytest-servers = pytest_servers.fixtures
[options.extras_require]
tests =
# see https://github.com/nedbat/coveragepy/issues/1341#issuecomment-1228942657
coverage-enable-subprocess
coverage[toml]>6
pytest-sugar==0.9.6
pytest-xdist==3.0.2
pylint==2.15.3
mypy==0.961
types-requests
s3 =
moto[server]>=4
s3fs[boto3]>=2022.02.0
botocore>=1.31.17 # Temporary: explicitly define this to avoid pip backtracking while installing moto[server]
azure =
adlfs>=2022.02.22
%(docker)s
gcs =
gcsfs>=2022.02.22
%(docker)s
docker =
docker>6
dev =
%(all)s
%(tests)s
all =
%(s3)s
%(azure)s
%(gcs)s
[options.packages.find]
exclude =
tests
tests.*
where=src
[flake8]
ignore=
# Whitespace before ':'
E203,
# Too many leading '#' for block comment
E266,
# Line break occurred before a binary operator
W503,
# unindexed parameters in the str.format, see:
# https://pypi.org/project/flake8-string-format/
P1,
per-file-ignores =
# many fixtures will be unused imports
src/pytest_servers/fixtures.py:F401,
# fixtures which use other fixtures will trigger this
src/pytest_servers/fixtures.py:F811
max_line_length = 88
max-complexity = 15
select = B,C,E,F,W,T4,B902,T,P
show_source = true
count = true