-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (100 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
108 lines (100 loc) · 2.55 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
106
107
108
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "enzu"
version = "0.3.0"
description = "Budgeted LLM task orchestration with hard limits and long-context RLM."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.9"
authors = [
{name = "teilomillet"}
]
keywords = [
"llm",
"ai",
"orchestration",
"budget",
"rlm",
"agents",
"workflow",
"openai",
"anthropic",
"openrouter",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"openai>=1.0.0",
"pydantic>=2.0.0",
"pypdf>=4.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.25.0",
"logfire>=4.19.0",
"tiktoken>=0.5.0",
"pydantic-monty>=0.0.7 ; python_full_version >= '3.10'",
]
[project.urls]
Homepage = "https://github.com/teilomillet/enzu"
Repository = "https://github.com/teilomillet/enzu"
Documentation = "https://github.com/teilomillet/enzu/tree/main/docs"
Issues = "https://github.com/teilomillet/enzu/issues"
Changelog = "https://github.com/teilomillet/enzu/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.23.0",
"pytest-xdist>=3.6.0",
"ruff>=0.4.0",
"ty>=0.0.14",
"ordeal>=0.1.17",
"hypothesis>=6.100.0",
]
telemetry = ["logfire"]
server = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.30.0",
]
docling = ["docling>=2.0.0"]
all = [
"enzu[dev]",
"enzu[telemetry]",
"enzu[server]",
"enzu[docling]",
]
[project.scripts]
enzu = "enzu.cli:main"
enzu-doctor = "enzu.doctor:main"
enzu-bench = "enzu.bench:main"
[tool.setuptools.packages.find]
include = ["enzu", "enzu.*", "scripts"]
[tool.setuptools.package-data]
"enzu.spec" = ["*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"integration: marks tests as integration tests requiring live API access (deselect with '-m \"not integration\"')",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[dependency-groups]
dev = [
"pytest-timeout>=2.4.0",
"pytest-xdist>=3.6.0",
"ty>=0.0.14",
]