-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (86 loc) · 2.14 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (86 loc) · 2.14 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
[project]
name = "octopal"
dynamic = ["version"]
description = "Octopal autonomous AI agent platform"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Proprietary" }
authors = [{ name = "Octopal" }]
dependencies = [
"aiogram>=3.5.0",
"fastapi>=0.110.0",
"httpx>=0.27.0",
"InquirerPy>=0.3.4",
"litellm>=1.50.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.2.0",
"playwright>=1.49.0",
"typer>=0.12.0",
"uvicorn>=0.27.0",
"websockets>=12.0",
"jsonschema>=4.22.0",
"structlog>=24.1.0",
"colorama>=0.4.6",
"cryptography>=46.0.0",
"rich>=13.7.0",
"mcp>=1.26,<2",
"numpy>=1.26,<3",
"onnxruntime>=1.22,<2",
"orjson>=3.10.0",
"google-auth>=2.38.0",
"google-auth-oauthlib>=1.2.0",
"telegramify-markdown>=0.5.4",
"tokenizers>=0.22,<1",
]
[project.optional-dependencies]
dev = [
"black>=24.4.0",
"ruff>=0.4.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"mypy>=1.9.0",
]
[project.scripts]
octopal = "octopal.cli.main:app"
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "octopal._version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
octopal = ["*.md", "runtime/octo/prompts/*.md"]
[tool.black]
line-length = 100
target-version = ['py312']
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP", "B", "C4", "T20", "SIM"]
ignore = ["E501"] # Handled by black
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
disallow_untyped_defs = true
# Incremental strict baseline. Expand this list as legacy modules are made type-clean.
files = [
"src/octopal/infrastructure/config/settings.py",
"src/octopal/interop/a2a/models.py",
"src/octopal/interop/a2a/security.py",
"src/octopal/runtime/pending_turns.py",
"src/octopal/runtime/workers/launcher_factory.py",
]
follow_imports = "skip"