-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 2.05 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "easy-agent-sdk"
version = "0.1.4"
description = "A lightweight AI Agent framework built on LiteLLM with ReAct reasoning, tool calling, and smart memory."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Yiran Peng", email = "amagipeng@gmail.com"}
]
maintainers = [
{name = "Yiran Peng", email = "amagipeng@gmail.com"}
]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
keywords = ["agent", "llm", "react", "ai", "litellm", "openai", "claude", "gpt", "tool-calling"]
dependencies = [
"litellm>=1.80.0",
"pydantic>=2.12.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"build",
"twine",
]
sandbox = [
"docker>=7.0", # Optional: for Docker sandbox (CLI fallback available)
]
web = [
"httpx>=0.27", # For SerperSearch tool
]
all = [
"easy-agent-sdk[sandbox,web]",
]
[project.urls]
"Homepage" = "https://github.com/SNHuan/EasyAgent"
"Documentation" = "https://github.com/SNHuan/EasyAgent#readme"
"Repository" = "https://github.com/SNHuan/EasyAgent"
"Bug Tracker" = "https://github.com/SNHuan/EasyAgent/issues"
"Changelog" = "https://github.com/SNHuan/EasyAgent/releases"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["easyagent", "easyagent.*"]
exclude = ["tests*", "test*"]
[tool.setuptools.package-data]
easyagent = ["*.yaml", "py.typed"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]