forked from andrewyng/openworker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 2.01 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "coworker"
version = "0.0.0"
description = "Agent coworker platform — provider-agnostic agentic coworker runtime"
requires-python = ">=3.10"
dependencies = [
"openai>=1.0",
"anthropic>=0.40",
"google-genai>=1.0",
"google-auth>=2.23",
"google-auth-oauthlib>=1.2",
"textual>=1.0",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"aisuite @ git+https://github.com/andrewyng/aisuite.git@1b4bbf303ec21968230b1ec869a144d054e9b3c4",
"docstring_parser",
"pyyaml>=6",
"pydantic>=2",
"mcp>=1.1,<2",
"httpx>=0.27",
"websockets>=13",
"ddgs>=9",
"croniter>=2",
"pypdf>=5",
"pypdfium2>=4",
"tzdata; sys_platform == 'win32'",
"tomli>=2; python_version < '3.11'",
]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-asyncio", "httpx"]
messaging = ["python-telegram-bot>=21", "slack-bolt>=1.18", "aiohttp>=3.9"]
browser = ["playwright>=1.44"]
bedrock = ["boto3>=1.34"]
[project.scripts]
openworker = "coworker.cli:main"
openworker-queue-drain = "coworker.queue_drain:main"
openworker-server = "coworker.server.run:main"
openworker-connectors = "coworker.connectors.cli:main"
openworker-engineering = "coworker.engineering_cli:main"
openworker-engineering-e2e = "coworker.engineering.e2e_verify:main"
openworker-harness-evidence = "coworker.engineering.harness_verify:main"
openworker-project-query = "coworker.project_query_cli:main"
openworker-work-ledger = "coworker.work_ledger_cli:main"
openworker-review-publish-drive = "scripts.publish_review_bundle_to_drive:main"
openworker-drive = "coworker.google_drive_cli:main"
openworker-drive-auth-login = "coworker.google_drive_auth_login:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["coworker*", "scripts*"]
[tool.setuptools.package-data]
coworker = ["personas/builtin/*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [".", "tests"]
asyncio_mode = "auto"
addopts = ["--import-mode=importlib"]