-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (54 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (54 loc) · 1.88 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "abench"
dynamic = ["version"]
description = "Reproducible ActivitySim runtime and memory benchmarks in Linux containers"
readme = "README.md"
requires-python = ">=3.10"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
dependencies = ["PyYAML>=6", "platformdirs>=3", "zstandard>=0.21", "prompt_toolkit>=3.0.36,<4"]
keywords = ["activitysim", "benchmark", "transportation", "memory", "sharrow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Benchmark",
]
[project.urls]
Homepage = "https://github.com/ActivitySim/abench"
Documentation = "https://github.com/ActivitySim/abench#readme"
Repository = "https://github.com/ActivitySim/abench"
Issues = "https://github.com/ActivitySim/abench/issues"
[tool.setuptools.dynamic]
version = {attr = "abench.__version__"}
[project.optional-dependencies]
test = ["pytest>=8", "pandas<3", "pyarrow", "numba", "ruff", "build"]
[project.scripts]
abench = "abench.cli:entrypoint"
[tool.setuptools.package-data]
abench = ["Dockerfile", "profiles/*.yaml"]
# uvx --from <checkout> must notice source edits, not just metadata changes.
[tool.uv]
cache-keys = [
{ file = "pyproject.toml" },
{ file = "README.md" },
{ file = "MANIFEST.in" },
{ file = "src/abench/**/*.py" },
{ file = "src/abench/Dockerfile" },
{ file = "src/abench/profiles/*.yaml" },
]
[tool.ruff]
line-length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["docker: Linux Docker integration tests (opt in with ABENCH_DOCKER_TESTS=1)"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.ruff.lint.isort]
known-first-party = ["abench"]