forked from boxed/mutmut
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (89 loc) · 2.68 KB
/
pyproject.toml
File metadata and controls
102 lines (89 loc) · 2.68 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "mutmut"
version = "3.5.0"
description = "mutation testing for Python 3"
keywords = ["mutmut", "mutant", "mutation", "test", "testing"]
authors = [
{ name = "Anders Hovmöller", email = "boxed@killingar.net" },
]
requires-python = ">=3.10"
readme = "README.rst"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"click>=8.0.0",
"coverage>=7.3.0",
"libcst>=1.8.5",
"pytest>=6.2.5",
"setproctitle>=1.1.0",
"textual>=1.0.0",
"toml>=0.10.2 ; python_full_version < '3.11'",
]
[project.urls]
Homepage = "https://github.com/boxed/mutmut"
Documentation = "https://mutmut.readthedocs.io/en/latest/"
Repository = "https://github.com/boxed/mutmut"
Issues = "https://github.com/boxed/mutmut/issues"
Changelog = "https://github.com/boxed/mutmut/blob/main/HISTORY.rst"
[project.scripts]
mutmut = "mutmut.__main__:cli"
[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
source-include = ["HISTORY.rst"]
[dependency-groups]
dev = [
"inline-snapshot>=0.32.0",
"pre-commit>=4.5.1",
"pyrefly>=0.53.0",
"pytest-asyncio>=1.0.0",
"ruff>=0.15.1",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
asyncio_default_fixture_loop_scope = "function"
[tool.inline-snapshot]
format-command="ruff format --stdin-filename {filename}"
[tool.ruff]
line-length = 120
target-version = "py310"
extend-exclude = [
"docs/_themes/",
"docs/conf.py",
"e2e_projects/",
"tests/data/test_generation/",
]
[tool.ruff.lint]
select = ["E", "F", "W", "B", "C4", "UP", "I"]
ignore = [
"E501", # line too long - handled by formatter
"B007", # unused loop control variable
"B018", # useless expression
"B024", # abstract base class without abstract methods
"B027", # empty method in abstract base class without abstract decorator
"B028", # no explicit stacklevel in warnings.warn
"B904", # raise without from in except
"C405", # unnecessary list literal
"C408", # unnecessary dict() call
"C416", # unnecessary list comprehension
"F402", # import shadowed by loop variable
"F841", # local variable assigned but never used
"UP007", # use X | Y for type annotations
"UP038", # use X | Y in isinstance
]
[tool.ruff.lint.isort]
force-single-line = true