-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.7 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=64", "wheel" ]
[project]
name = "perftrack"
version = "0.1.0"
description = "Lightweight CLI tool to detect performance regressions by comparing local benchmark snapshots."
readme = "README.md"
keywords = [ "benchmark", "cli", "performance", "regression" ]
license = "MIT"
license-files = [ "LICENSE" ]
authors = [
{ name = "Pravin", email = "p-r-a-v-i-n@users.noreply.github.com" },
]
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dependencies = [
"psutil>=7.1.3,<8",
]
optional-dependencies.dev = [
"pre-commit",
"pytest",
"pytest-cov",
"ruff",
]
urls.Homepage = "https://github.com/p-r-a-v-i-n/perftrack"
urls.Issues = "https://github.com/p-r-a-v-i-n/perftrack/issues"
scripts.perftrack = "perftrack.cli:main"
[tool.ruff]
target-version = "py39"
line-length = 88
exclude = [
".env",
".git",
".venv",
"__pycache__",
"build",
"dist",
"env",
"venv",
]
format.indent-style = "space"
format.quote-style = "double"
format.docstring-code-format = true
lint.select = [ "D", "E", "F", "I", "N", "W" ]
lint.ignore = [
"D100",
"D104",
"D107",
]
lint.pydocstyle.convention = "pep257"
[tool.pyproject-fmt]
max_supported_python = "3.14"
[tool.pytest.ini_options]
testpaths = [ "tests" ]
addopts = "--cov=perftrack --cov-report=term-missing"