-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (69 loc) · 2.11 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "pytest-parametrize-suite"
version = "23.1.2"
description = "A simple pytest extension for creating a named test suite."
authors = ["Sean Stewart <[email protected]>"]
readme = "README.md"
license = "GPL-3.0"
packages = [{include = "pytest_parametrize_suite", from = "src"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.plugins."pytest11"]
suite = "pytest_parametrize_suite.plugin"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pytest = "*"
typing-extensions = {version = "^4.4.0", python = "<3.10"}
[tool.poetry.group.test.dependencies]
pytest-cov = "^4.0.0"
[tool.poetry.group.lint.dependencies]
mypy = "^0.991"
black = "^22.12.0"
flake8 = "^6.0.0"
flake8-bugbear = "^23.1.14"
isort = "^5.11.4"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21.0"
bumpver = "^2022.1120"
[tool.black]
line-length = 88
extend-exclude = '''
/(.cache/|.venv/|.poetry/)
'''
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
[tool.mypy]
mypy_path = "$MYPY_CONFIG_FILE_DIR/src/pytest_parametrize_suite,$MYPY_CONFIG_FILE_DIR/example"
no_namespace_packages = true
python_version = "3.11"
install_types = true
non_interactive = true
ignore_missing_imports = true
no_strict_optional = true
follow_imports = "silent"
exclude = ".*tests/.*|.*docs/.*"
[tool.pytest.ini_options]
testpaths = ["tests"]
minversion = "7.0"
[bumpver]
current_version = "v23.1.2"
version_pattern = "vYY.MM.PATCH[-TAGNUM]"
commit_message = "bump version to {new_version} [ci skip]"
tag = true
push = true
commit = true
[bumpver.file_patterns]
"pyproject.toml" = [ 'version = "{pep440_version}"', 'current_version = "{version}"' ]
"src/pytest_parametrize_suite/__init__.py" = ['__version__ = "{pep440_version}"']
[build-system]
requires = ["poetry-core>=1.3"]
build-backend = "poetry.core.masonry.api"