-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (78 loc) · 1.89 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aini"
dynamic = ["version"]
authors = [
{name = "Alpha x1", email = "alpha.xone@outlook.com"},
]
description = "Declarative AI components"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"rich>=13.0.0",
"pyyaml>=6.0.0",
"importlib-metadata>=6.0.0",
"typing-extensions>=4.0.0",
"pydantic>=2.11.0",
]
[project.optional-dependencies]
agno = ["agno>=1.5.0"]
autogen = [
"autogen-agentchat>=0.5.7",
"autogen-core>=0.5.7",
"autogen-ext>=0.5.7",
]
lang = [
"langchain>=0.3.20",
"langchain-openai>=0.3.18",
"langchain-deepseek>=0.1.3",
"langgraph>=0.4.7",
]
graph = [
"langgraph-cli>=0.2.10",
"langgraph-api>=0.2.38",
"langchain>=0.3.20",
"langchain-openai>=0.3.18",
"langchain-deepseek>=0.1.3",
"langgraph>=0.4.7",
"langchain-tavily>=0.2.0",
]
mem0 = [
"mem0ai>=0.1.104",
"neo4j>=5.26.0",
"langchain-neo4j>=0.4.0",
"rank_bm25>=0.2.2",
]
all = [
"agno>=1.5.0",
"autogen-agentchat>=0.5.7",
"autogen-core>=0.5.7",
"autogen-ext>=0.5.7",
"langchain>=0.3.20",
"langchain-openai>=0.3.18",
"langchain-deepseek>=0.1.3",
"langgraph>=0.4.7",
"langgraph-cli>=0.2.10",
"langgraph-api>=0.2.38",
"mem0ai>=0.1.104",
"neo4j>=5.26.0",
"langchain-neo4j>=0.4.0",
"rank_bm25>=0.2.2",
]
[project.urls]
"Homepage" = "https://github.com/alpha-xone/aini"
"Bug Tracker" = "https://github.com/alpha-xone/aini/issues"
[tool.setuptools]
packages = ["aini"]
include-package-data = true
[tool.setuptools.package-data]
"aini" = ["**/*.yml", "**/*.yaml", "**/*.json"]
[tool.setuptools.dynamic]
version = {attr = "aini.__version__"}