-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 832 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 832 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
34
35
36
37
38
39
40
41
[project]
name = "bundle"
version = "0.1.0"
description = "Bundle: macOS-native capture and retrieval app for fleeting inspiration"
requires-python = ">=3.12"
[tool.uv.workspace]
members = ["services/api", "libs/common"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "TCH"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["libs", "services"]
addopts = "--import-mode=importlib"
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
include = ["services", "libs"]
exclude = ["**/tests/**"]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pyright>=1.1.410",
"pytest>=9.0.3",
"pytest-asyncio>=0.25.0",
"ruff>=0.15.16",
]