-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (96 loc) · 2.59 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (96 loc) · 2.59 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
100
101
102
103
104
105
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opc"
version = "0.1.0"
description = "One-Person Company — Autonomous AI Agent collaboration system with natural language interface"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"typer[all]>=0.9.0",
"rich>=13.0",
"prompt-toolkit>=3.0",
"litellm==1.82.1",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
"aiosqlite>=0.19.0",
"chromadb>=0.4.0",
"httpx>=0.27.0",
"loguru>=0.7.0",
"playwright>=1.40",
"mcp>=1.28,<2",
"anyio>=4.0",
"python-docx>=1.1.0",
"openpyxl>=3.1.0",
"python-pptx>=0.6.21",
]
[project.optional-dependencies]
# Backwards-compatible alias: browser tools are now native and the dependency
# is installed with the base package.
browser = []
# Optional legacy CLI board/TUI inspector; not installed by default.
cli-board = ["textual>=8.1.1"]
channels-telegram = ["python-telegram-bot>=21.0"]
channels-whatsapp = ["websockets>=12.0"]
channels-discord = ["discord.py>=2.3"]
channels-feishu = ["lark-oapi>=1.4.0"]
channels-mochat = ["python-socketio[asyncio_client]>=5.11.0"]
channels-dingtalk = ["dingtalk-stream>=0.21.0"]
channels-email = []
channels-slack = ["slack-sdk>=3.27.0"]
channels-qq = ["qq-botpy>=1.2.1"]
channels-matrix = ["matrix-nio>=0.24.0"]
channels-bridges = [
"websockets>=12.0",
"python-socketio[asyncio_client]>=5.11.0",
]
channels-all = [
"python-telegram-bot>=21.0",
"websockets>=12.0",
"discord.py>=2.3",
"lark-oapi>=1.4.0",
"python-socketio[asyncio_client]>=5.11.0",
"dingtalk-stream>=0.21.0",
"slack-sdk>=3.27.0",
"qq-botpy>=1.2.1",
"matrix-nio>=0.24.0",
]
all = [
"python-telegram-bot>=21.0",
"websockets>=12.0",
"discord.py>=2.3",
"lark-oapi>=1.4.0",
"python-socketio[asyncio_client]>=5.11.0",
"dingtalk-stream>=0.21.0",
"slack-sdk>=3.27.0",
"qq-botpy>=1.2.1",
"matrix-nio>=0.24.0",
]
dev = [
"pytest>=9.0",
"pytest-timeout>=2.3",
]
[project.scripts]
opc = "opc.cli.app:main"
[tool.hatch.build.targets.wheel]
packages = ["opc"]
[tool.hatch.build.targets.wheel.force-include]
"config" = "opc/config_templates"
"skills/core" = "opc/skills_assets/core"
[tool.hatch.build.targets.sdist]
include = [
"opc",
"config",
"skills/core",
"docs",
"scripts",
"README.md",
"pyproject.toml",
]
[tool.pytest.ini_options]
# Backstop against wedged tests: a hung test fails after 5 minutes instead
# of stalling the whole suite (requires pytest-timeout, in the `dev` extra).
timeout = 300