-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.12 KB
/
pyproject.toml
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
[project]
name = "pybenchkit"
version = "0.0.1"
authors = [
{ name="Antonio Paolillo", email="[email protected]" },
]
description = "A push-button end-to-end performance evaluation pipeline for automatically exploring the parameter space."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/open-s4c/benchkit"
Issues = "https://github.com/open-s4c/benchkit/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = [
"benchkit/",
"examples/",
"plotbench/",
"scripts/",
"tests/",
"tutorials/",
]
exclude = [
"venv*/",
".venv*/",
]
[tool.black]
line-length = 100
target-version = ['py310']
exclude = '''
^/(
(
venv
| tutorials/leveldb-bench/deps
| plotbench/venv
)/
| plotbench/src/assets/defaultcustomsrc\.py
)
'''
[tool.isort]
profile = "black"
skip = [
"tutorials/leveldb-bench/deps/",
"plotbench/venv"
]
skip_glob = ["**/venv/**/*"]