35 lines
668 B
TOML
35 lines
668 B
TOML
[project]
|
|
name = "stealth-ai-agent"
|
|
version = "0.1.0"
|
|
description = "AI agent that lives in macOS menubar"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "h", email = "h@kotikot.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pillow>=12.0.0",
|
|
"pydantic-ai-slim[google]>=1.25.0",
|
|
"pydantic-settings>=2.12.0",
|
|
"pyobjc-core>=12.1",
|
|
"pyperclip>=1.11.0",
|
|
"pyscreenshot>=3.1",
|
|
"quickmachotkey>=2025.7.28",
|
|
"rumps>=0.4.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"rich>=14.2.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.13,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv.build-backend]
|
|
module-name = ["app"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|