-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (79 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
92 lines (79 loc) · 2.39 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
[project]
name = "tinygent"
version = "0.1.1"
description = "Tiny agentic framework for building AI agents which can do more than tiny just tasks."
authors = [{ name = "Filip Chytil" }]
license = "MIT"
readme = "README.md"
requires-python = "==3.12.*"
keywords = ["ai", "agents", "llm", "openai", "anthropic", "agentic", "framework"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"async-lru>=2.0.5",
"jinja2>=3.1.6",
"langchain-core>=0.3.74",
"numpy>=2.3.4",
"opentelemetry-exporter-otlp>=1.38.0",
"opentelemetry-sdk>=1.38.0",
"pydantic>=2.11.7",
"pyyaml>=6.0.2",
"typer>=0.19.2",
]
[project.urls]
Homepage = "https://github.com/filchy/tinygent"
Repository = "https://github.com/filchy/tinygent"
Issues = "https://github.com/filchy/tinygent/issues"
[project.optional-dependencies]
dev = [
"mypy>=1.17.1",
"ruff>=0.12.11",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.2",
]
brave = ["tinygent-brave"]
anthropic = ["tinygent-anthropic"]
openai = ["tinygent-openai"]
mistralai = ["tinygent-mistralai"]
gemini = ["tinygent-gemini"]
chat = ["tinygent-chat"]
graph = ["tinygent-graph"]
voyageai = ["tinygent-voyageai"]
[project.scripts]
tiny = "tinygent.cli.main:run_cli"
lint = "scripts.lint:main"
fmt = "scripts.fmt:main"
docs = "scripts.docs:main"
[project.entry-points.components]
tiny_agents = "tinygent.agents.register"
tiny_middlewares = "tinygent.agents.middleware.register"
tiny_tools = "tinygent.tools.register"
tiny_memory = "tinygent.memory.register"
tiny_crossencoders = "tinygent.cross_encoders.register"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.uv.workspace]
members = ["packages/*", "."]
[tool.uv.sources]
tinygent-brave = { workspace = true }
tinygent-anthropic = { workspace = true }
tinygent-openai = { workspace = true }
tinygent-mistralai = { workspace = true }
tinygent-gemini = { workspace = true }
tinygent-chat = { workspace = true }
tinygent-graph = { workspace = true }
tinygent-voyageai = { workspace = true }
[tool.hatch.build.targets.wheel]
packages = ["tinygent"]