-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1005 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1005 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
42
[project]
name = "personal-ai-agent"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiofiles>=25.1.0",
"beautifulsoup4>=4.14.2",
"customtkinter>=5.2.2",
"google-api-core>=2.26.0",
"google-genai>=1.45.0",
"litellm>=1.78.4",
"markdown>=3.9",
"mcp[cli]>=1.18.0",
"mss>=10.1.0",
"pillow>=10.4.0",
"psutil>=7.1.2",
"pyautogui>=0.9.54",
"pynput>=1.8.1",
"pystray>=0.19.5",
"requests>=2.32.5",
"tenacity>=9.1.2",
"tkhtmlview>=0.3.1",
]
[tool.setuptools]
packages = ["core", "utils", "ui", "plugins", "input"]
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
"pytest-asyncio>=0.23.7",
"toml>=0.10.2",
]
[tool.analyzer]
exclude_dirs = [".git", "__pycache__", ".pytest_cache", "venv", ".venv", "node_modules", "build", "dist"]
file_length_threshold = 500
complexity_threshold_medium = 15
complexity_threshold_high = 20
class_count_threshold = 4