-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1.3 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
[project]
name = "zccache"
dynamic = ["version"]
description = "A high-performance local compiler cache daemon"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.10"
dependencies = []
[dependency-groups]
dev = [
"pillow>=11.0",
# Used by `cpp_lint` integration tests to fetch clang-query / IWYU
# on demand. The package is small and the install lives under
# ~/.clang-tool-chain, so it doesn't pollute the build dir.
"clang-tool-chain-bins>=0.1",
# Used by tests + the cpp_lint TOML round-trip path.
"tomli_w>=1.0; python_version < '3.11'",
]
[project.scripts]
run_zccache = "ci.soldr:run_zccache"
run_zccache_daemon = "ci.soldr:run_zccache_daemon"
run_zccache_fingerprint = "ci.soldr:run_zccache_fingerprint"
zccache-python = "zccache.cli:main"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ci", "zccache", "zccache.cpp_lint", "zccache.fingerprint", "zccache.watcher"]
[tool.setuptools.package-dir]
ci = "ci"
zccache = "python/zccache"
"zccache.cpp_lint" = "python/zccache/cpp_lint"
"zccache.fingerprint" = "python/zccache/fingerprint"
"zccache.watcher" = "python/zccache/watcher"
[tool.setuptools.package-data]
zccache = ["py.typed"]
"zccache.fingerprint" = ["py.typed"]
"zccache.watcher" = ["py.typed"]