-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.29 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bench_runner"
authors = [
{name = "Michael Droettboom", email = "mdroettboom@microsoft.com"},
]
description = "Faster CPython's benchmarking runner utilities"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"matplotlib==3.10.3",
"pyperf==2.9.0",
"rich==14.0.0",
"rich-argparse==1.7.1",
"ruamel.yaml==0.18.14",
"scour==0.38.2",
"wheel",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"black==25.1.0",
"filelock==3.18.0",
"flake8==7.3.0",
"pyright==1.1.402",
"pytest==8.4.1",
"pytest-cov==6.2.1",
"pytest-xdist==3.7.0",
]
[tool.setuptools_scm]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
bench_runner = ["templates/*"]
[tool.pytest.ini_options]
markers = [
"long_running: marks tests as long_running (deselect with '-m \"not running\"')",
]
[tool.coverage.paths]
source = [
"bench_runner",
"/tmp/pytest-of-*/pytest-*/*/repo/outer_venv/lib/python*/site-packages/bench_runner",
"/tmp/pytest-of-*/pytest-*/*/repo/venv/lib/python*/site-packages/bench_runner",
]