blob: f53ca6b216c59e04d2815dcdcbaa6a7d2f73a468 (
plain) (
blame)
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
|
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "benchstrace/_version.py"
[project]
name = "benchstrace"
authors = [
{name = "Joseph Hunkeler", email = "jhunkeler@gmail.com"},
]
description = "Benchmark and compare strace data"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["benchmark", "profile"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
[project.optional-dependencies]
[project.scripts]
benchstrace = "benchstrace.cli:main"
|