forked from pytest-dev/pytest-xprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (53 loc) · 1.43 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
[metadata]
name = pytest-xprocess
author = Holger Krekel
author_email = [email protected]
license = MIT
license_files = LICENSE
url = https://github.com/pytest-dev/pytest-xprocess/
long_description = file: README.rst
long_description_content_type = text/x-rst
description = A pytest plugin for managing processes across test runs.
classifiers=
Framework :: Pytest
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Testing
Topic :: Software Development :: Libraries
Topic :: Utilities
[options]
packages = find:
python_requires = >= 3.8
[options.packages.find]
exclude = docs, tests
[options.entry_points]
pytest11 =
xprocess = xprocess.pytest_xprocess
[coverage:run]
branch = true
include =
xprocess/xprocess.py
xprocess/pytest_xprocess.py
[flake8]
# B = bugbear
# E = pycodestyle errors
# F = flake8 pyflakes
# W = pycodestyle warnings
# B9 = bugbear opinions
# E203 = slice notation whitespace, invalid
# E501 = line length, handled by bugbear B950
# E722 = bare except, handled by bugbear B001
# W503 = bin op line break, invalid
select = B, E, F, W, B9
ignore =
E203
E501
E722
W503
max-line-length = 80