-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
63 lines (59 loc) · 1.12 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
[project]
name = "agentlightning"
version = "0.1.2"
description = "Agent Lightning is the absolute trainer to light up AI agents."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"graphviz",
"psutil",
"setproctitle",
"flask",
"agentops<=0.4.18",
"httpdbg",
"uvicorn",
"fastapi",
"aiohttp",
]
[project.optional-dependencies]
dev = [
"flake8",
"pytest",
"hatch",
"pytest-asyncio",
"pre-commit",
"pytest-rerunfailures",
"black",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mike",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-git-authors-plugin",
"mkdocs-macros-plugin",
]
experiment = [
"random-word",
]
agent = [
"autogen-agentchat",
"autogen-ext[openai]",
"litellm[proxy]",
"mcp",
"openai-agents",
"langgraph",
"langchain[openai]",
"langchain-community",
"langchain-text-splitters",
"sqlparse",
"nltk",
"uv",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["agentlightning"]
include = ["**/*.yaml", "**/*.yml"]
[tool.pytest.ini_options]
testpaths = ["tests"]