-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 811 Bytes
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
[project]
name = "asv-codspeed"
version = "0.1.0"
description = "Run ASV (airspeed velocity) benchmarks with CodSpeed instrumentation"
license = "MIT"
requires-python = ">=3.9"
authors = [{ name = "Arthur Pastel", email = "arthur@codspeed.io" }]
keywords = ["codspeed", "benchmark", "performance", "asv", "airspeed-velocity"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Topic :: System :: Benchmark",
]
dependencies = [
"codspeed>=0.1.0",
"rich>=13.8.1",
]
[project.scripts]
asv-codspeed = "asv_codspeed.__main__:main"
[build-system]
requires = ["setuptools >= 61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]