-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 2.23 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
[build-system]
requires = ["setuptools==68.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "microbenchmark"
version = "0.0.3"
authors = [
{ name="Evgeniy Blinov", email="zheni-b@yandex.ru" },
]
description = ''
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"printo>=0.0.22",
"sigmatch>=0.0.9",
]
classifiers = [
"Operating System :: OS Independent",
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'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',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3.15',
'Programming Language :: Python :: Free Threading',
'Programming Language :: Python :: Free Threading :: 3 - Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Typing :: Typed',
]
keywords = [
'benchmarks'
]
[tool.setuptools]
package-data = { microbenchmark = ["py.typed"] }
packages = { find = { include = ["microbenchmark"] } }
[tool.mutmut]
paths_to_mutate=["microbenchmark"]
[tool.coverage.run]
branch = true
parallel = true
plugins = ["coverage_pyver_pragma"]
source = ["microbenchmark"]
[tool.pytest.ini_options]
norecursedirs = ["build", "mutants"]
[tool.ruff]
lint.ignore = ['E501', 'E712', 'PTH123', 'PTH118', 'PLR2004', 'PTH107', 'SIM105', 'SIM102', 'RET503', 'PLR0912', 'C901', 'E731', 'F821']
lint.select = ["ERA001", "YTT", "ASYNC", "BLE", "B", "A", "COM", "INP", "PIE", "T20", "PT", "RSE", "RET", "SIM", "SLOT", "TID252", "ARG", "PTH", "I", "C90", "N", "E", "W", "D201", "D202", "D419", "F", "PL", "PLE", "PLR", "PLW", "RUF", "TRY201", "TRY400", "TRY401"]
format.quote-style = "single"
[project.scripts]
microbenchmark = "microbenchmark.__main__:main"
[project.urls]
'Source' = 'https://github.com/mutating/microbenchmark'
'Tracker' = 'https://github.com/mutating/microbenchmark/issues'