File: setup.cfg

package info (click to toggle)
python-pytest-xprocess 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 272 kB
  • sloc: python: 756; makefile: 25; sh: 10
file content (58 lines) | stat: -rw-r--r-- 1,463 bytes parent folder | download
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 = holger@merlinux.eu
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