-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
79 lines (72 loc) · 2.17 KB
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
[build-system]
requires = [
"setuptools>=77.0.3",
]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-order"
description = "pytest plugin to run tests in a specific order"
readme = "README.md"
keywords = [
"testing",
"pytest",
"ordering",
]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"pytest>=5.0; python_version < '3.10'",
"pytest>=6.2.4; python_version >= '3.10'",
]
authors = [
{name = "mrbean-bremen", email = "hansemrbean@googlemail.com"}
]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
]
[project.optional-dependencies]
dev = [
"pytest-mock>=1.11.0",
"pytest-xdist>=1.29.0",
"pytest-dependency>=0.5.1",
]
[project.urls]
homepage = "https://github.com/pytest-dev/pytest-order"
documentation = "https://pytest-order.readthedocs.io/"
download = "https://github.com/pytest-dev/pytest-order/archive/main.zip"
repository = "https://github.com/pytest-dev/pytest-order"
changelog = "https://github.com/pytest-dev/pytest-order/blob/main/CHANGELOG.md"
issues = "https://github.com/pytest-dev/pytest-order/issues"
[project.entry-points.pytest11]
pytest_order = "pytest_order.plugin"
[tool.setuptools.dynamic]
version = {attr = "pytest_order.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
mypy_path = "src/"
no_namespace_packages = true
check_untyped_defs = true
no_implicit_optional = true
disallow_any_generics = true
warn_redundant_casts = true
warn_unused_ignores = true
show_error_codes = true
ignore_missing_imports = true
show_column_numbers = true