-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.52 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
[project]
name = "jupiter"
version = "0.1.0"
description = "Thrive is a small tool for _life planning_."
authors = [{ name = "Mike Bestcat", email = "mike@get-thriving.com" }]
requires-python = ">=3.13,<4"
readme = "README.md"
license = "MIT"
[project.urls]
Homepage = "https://get-thriving.com/"
Repository = "https://github.com/get-thriving/thrive"
Documentation = "https://docs.get-thriving.com/"
[tool.uv.workspace]
members = [
"gen/py/webapi-client",
"src/alib/py/framework",
"src/webapi/gc-do-all",
"src/webapi/gen-do-all",
"src/webapi/schedule-external-sync-do-all",
"src/webapi/search-index-backfill-do-all",
"src/webapi/search-mutation-log-drain-do-all",
"src/webapi/search-mutation-log-processing-requeue-do-all",
"src/webapi/stats-do-all",
"src/webapi/srv",
"src/api",
"src/mcp",
"src/core",
"src/docs",
"src/cli",
"itests",
]
[dependency-groups]
dev = [
"yamllint>=1.36.2,<2",
"pyflakes>=3.2.0,<4",
"bandit>=1.8.3,<2",
"pydocstyle>=6.3.0,<7",
"vulture>=2.14,<3",
"mypy>=1.18.0,<2",
"black>=25.1.0,<26",
"pytest>=8.3.5,<9",
"pytest-html-reporter>=0.2.9,<0.3",
"pillow>=11.1.0,<12",
"httpie>=3.2.4,<4",
"autoflake>=2.3.1,<3",
"ruff>=0.4.0,<0.5",
"watchfiles>=1.0.4,<2",
"openapi-python-client>=0.24.1,<0.25",
"codename>=1.1,<2",
"pip-audit>=2.8.0,<3",
"pylibyear>=0.3.4,<0.4",
"pytest-retry>=1.7.0",
]
[tool.uv]
package = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"