-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (36 loc) · 841 Bytes
/
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
[metadata]
name = pytest-suggest
version = 0.0.0
author = Davide Canton
author_email = [email protected]
description = A pytest plugin to suggest test cases
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages = find:
python_requires = >=3.8
install_requires =
pytest >=8.0.0
[options.packages.find]
include = pytest_suggest*
[options.extras_require]
dev =
pytest-cov >=4.0.0
build
tox
# code coverage configuration
# refer to https://coverage.readthedocs.io/en/latest/config.html
[coverage:run]
branch = true
[coverage:paths]
source = .
[coverage:report]
include =
pytest_suggest/**
[coverage:html]
directory = coverage
[options.entry_points]
console_scripts =
pytest-suggest = pytest_suggest.cli.suggest:main
pytest11 =
suggest = pytest_suggest.plugin