-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
66 lines (50 loc) · 1.43 KB
/
pyproject.toml
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
[tool.poetry]
name = "coverage-conditional-plugin"
version = "0.9.0"
description = "Conditional coverage based on any rules you define!"
license = "MIT"
authors = [
"sobolevn <[email protected]>"
]
# This is required for source distributions, like the one
# used for Alpine linux. See #157
include = [
{path = 'tests/*', format = 'sdist'},
{path = 'test_project/*', format = 'sdist'},
]
readme = "README.md"
repository = "https://github.com/wemake-services/coverage-conditional-plugin"
keywords = [
"coverage",
"coverage.py",
"pytest-cov",
"testing",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.urls]
"Funding" = "https://github.com/sponsors/wemake-services"
[tool.poetry.dependencies]
python = "^3.7"
coverage = ">=7,<8"
packaging = ">=20.4"
importlib_metadata = { version = "*", python = "<3.10" }
[tool.poetry.group.test.dependencies]
mypy = "^1.3"
types-setuptools = "^65.3"
wemake-python-styleguide = "^0.17"
flake8-pytest-style = "^1.5"
nitpick = "^0.33"
safety = "^2.3"
pytest = "^7.3"
pytest-cov = "^3.0"
pytest-randomly = "^3.12"
[build-system]
requires = ["poetry_core>=1.6.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"