-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
77 lines (67 loc) · 1.61 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eidolon"
version = "0.1.0"
description = "An extensible AI agent framework with event-sourced architecture"
readme = "README.md"
license = "MIT"
requires-python = ">=3.13"
authors = [{ name = "parasaran" }]
keywords = ["ai", "agents", "llm", "mcp", "event-sourcing"]
dependencies = [
"pydantic>=2.10,<3",
"pydantic-settings>=2.7,<3",
"pyyaml>=6.0,<7",
"aiosqlite>=0.20,<1",
]
[project.optional-dependencies]
openai = ["openai>=1.60,<2", "tiktoken>=0.7,<1"]
anthropic = ["anthropic>=0.44,<1"]
google = ["google-genai>=1.0,<2"]
tui = ["textual>=1.0,<2"]
mcp = ["mcp>=1.0,<2"]
vector = ["chromadb>=0.5,<1"]
all = [
"eidolon[openai]",
"eidolon[anthropic]",
"eidolon[google]",
"eidolon[tui]",
"eidolon[mcp]",
"eidolon[vector]",
]
dev = [
"pytest>=8.0,<9",
"pytest-asyncio>=0.24,<1",
"pytest-cov>=6.0,<7",
"ruff>=0.9,<1",
"mypy>=1.14,<2",
"types-PyYAML>=6.0,<7",
]
[project.scripts]
eidolon = "eidolon.cli.main:app"
[tool.hatch.build.targets.wheel]
packages = ["src/eidolon"]
[tool.ruff]
target-version = "py313"
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "N", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.isort]
known-first-party = ["eidolon"]
[tool.mypy]
python_version = "3.13"
strict = true
plugins = ["pydantic.mypy"]
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"slow: marks tests as slow",
"integration: marks integration tests",
]