-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 945 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 945 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "desktop-brief"
version = "0.1.0"
description = "Live Jarvis-style desktop briefing: email, calendar, weather, stocks, news, grants."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Travis Turner" }]
dependencies = [
"httpx>=0.27",
"anthropic>=0.40",
"python-dotenv>=1.0",
"psutil>=5.9",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.5",
]
[project.scripts]
desktop-brief-daemon = "desktop_brief.cli.daemon_main:main"
dbrief-render = "desktop_brief.cli.render_main:main"
dbrief-doctor = "desktop_brief.cli.doctor:main"
[tool.hatch.build.targets.wheel]
packages = ["src/desktop_brief"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"