-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (92 loc) · 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (92 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "promethea-agent"
version = "0.1.0"
description = "A general-purpose AI agent with computer control and memory capabilities"
authors = [
{ name = "Promethea Maintainers" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.0.0",
"python-multipart>=0.0.6",
"python-dotenv>=1.0.0",
"loguru>=0.7.0",
"openai>=1.0.0",
"neo4j>=5.0.0",
"websockets>=12.0",
"aiohttp>=3.9.0",
"requests>=2.31.0",
"ddgs>=9.0.0",
"playwright>=1.40.0",
"pyautogui>=0.9.54",
"pillow>=10.0.0",
"pypdf>=4.0.0",
"pytesseract>=0.3.10",
"pyperclip>=1.8.2",
"psutil>=5.9.0",
"passlib[bcrypt]>=1.7.4",
"bcrypt>=4.0.1,<5.0.0",
"python-jose[cryptography]>=3.3.0",
"mcp>=1.0.0",
]
[project.scripts]
promethea = "promethea_cli.main:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black",
"isort",
"flake8"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
addopts = [
"-v",
"--strict-markers",
"--tb=short",
"-p",
"no:cacheprovider"
]
tmp_path_retention_policy = "failed"
tmp_path_retention_count = 1
markers = [
"asyncio: async tests",
"live: integration tests requiring running services",
"slow: slow tests",
"stress: stress/load tests (opt-in)"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = ["tests*", "UI*"]
[tool.coverage.run]
source = ["agentkit", "gateway", "computer", "memory", "core", "channels"]
omit = [
"tests/*",
"start_gateway_service.py",
]
[tool.coverage.report]
fail_under = 35
show_missing = true
skip_covered = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
]