-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 753 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 753 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
30
31
32
33
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "u-pool"
version = "0.8.0"
description = "Provider switcher for Claude Code, Codex, Hermes and OpenCode"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pywebview>=5.3",
"tomlkit>=0.13",
# Hermes keeps its whole configuration in one config.yaml. Only the parse side
# is used - the write is a text splice, so the dumper never sees the document.
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pyinstaller>=6.6",
]
[project.scripts]
u-pool = "upool.app:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]