-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (61 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
66 lines (61 loc) · 1.32 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
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["tinyagent*"]
exclude = ["public", "public.*"]
[tool.setuptools.package-data]
tinyagent = ["prompts/*.yaml"]
[project]
name = "tinyagent-py"
version = "0.1.20"
description = "🛠️ Build your own AI coding assistant with any model you want. Revolutionary agent framework with secure sandboxed execution, parallel subagents, and freedom to choose any LLM provider - OpenAI, Anthropic, Ollama, or 100+ others."
readme = "README.md"
authors = [
{name="Mahdi Golchin", email="golchin@askdev.ai"}
]
requires-python = ">=3.8"
dependencies = [
"mcp",
"litellm",
"openai",
"tiktoken",
"uuid",
# add whatever else you need…
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"isort",
"mypy"
]
postgres = [
"asyncpg>=0.27.0"
]
sqlite = [
"aiosqlite>=0.18.0"
]
gradio = [
"gradio>=3.50.0"
]
code = [
"jinja2",
"pyyaml",
"cloudpickle",
"modal"
]
all = [
"asyncpg>=0.27.0",
"aiosqlite>=0.18.0",
"gradio>=3.50.0",
"jinja2",
"pyyaml",
"cloudpickle",
"modal"
]
[project.urls]
"Homepage" = "https://github.com/askbudi/tinyagent"
"Bug Tracker" = "https://github.com/askbudi/tinyagent/issues"
"Chat" = "https://askdev.ai/github/askbudi/tinyagent"