-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.08 KB
/
pyproject.toml
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
[tool.poetry]
name = "manager-mccode"
version = "0.1.0"
description = "Screen activity summarization using Gemini Vision API"
authors = ["Jake Gearon <[email protected]>"]
readme = "README.md"
packages = [{include = "manager_mccode"}]
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.0"
pillow = "^10.2.0" # for screenshot handling
google-generativeai = "^0.3.0"
pyautogui = "^0.9.54" # for screenshots
pydantic = "^2.6.0" # for structured output
pydantic-settings = "^2.1.0" # for settings management
duckdb = "^0.9.2" # Add DuckDB
rich = "^13.7.0"
click = "^8.1.7"
mss = "^10.0.0"
fastapi = "^0.109.0"
uvicorn = "^0.27.0"
jinja2 = "^3.1.3"
python-multipart = "^0.0.6"
httpx = "^0.26.0" # For TestClient in tests
aiofiles = "^23.2.1" # For static file serving
[tool.poetry.scripts]
mccode = "manager_mccode.cli.service:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.0"
pytest-cov = "^4.1.0"
[tool.poetry.group.dev.dependencies]
pytest-mock = "^3.14.0"