-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.82 KB
/
pyproject.toml
File metadata and controls
84 lines (75 loc) · 2.82 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 = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "graph-tool-call"
version = "0.19.1"
description = "Graph-structured tool retrieval for LLM agents — zero-dependency, ontology-aware hybrid search"
authors = ["SonAIengine"]
license = "MIT"
readme = "README.md"
packages = [{include = "graph_tool_call"}]
keywords = [
"llm", "agent", "tool-calling", "function-calling", "graph",
"langchain", "mcp", "mcp-server", "openapi", "swagger",
"tool-retrieval", "rag", "bm25", "hybrid-search", "workflow",
"openai", "anthropic", "claude", "token-optimization", "agentic",
"zero-dependency",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
[tool.poetry.urls]
Homepage = "https://github.com/SonAIengine/graph-tool-call"
Repository = "https://github.com/SonAIengine/graph-tool-call"
"Bug Tracker" = "https://github.com/SonAIengine/graph-tool-call/issues"
[tool.poetry.scripts]
graph-tool-call = "graph_tool_call.__main__:main"
[tool.poetry.dependencies]
python = "^3.10"
# No required dependencies! Core runs on stdlib only.
networkx = {version = "^3.0", optional = true}
pyyaml = {version = ">=6.0", optional = true}
numpy = {version = ">=1.24.0", optional = true}
sentence-transformers = {version = ">=2.0.0", optional = true}
rapidfuzz = {version = ">=3.0.0", optional = true}
langchain-core = {version = ">=0.2.0", optional = true}
pyvis = {version = ">=0.3.0", optional = true}
ai-api-lint = {version = ">=0.1.0", optional = true}
dash = {version = ">=2.18.0", optional = true}
dash-cytoscape = {version = ">=1.0.2", optional = true}
mcp = {version = ">=1.0.0", optional = true}
[tool.poetry.extras]
openapi = ["pyyaml"]
embedding = ["numpy"]
embedding-local = ["numpy", "sentence-transformers"]
similarity = ["rapidfuzz"]
langchain = ["langchain-core"]
visualization = ["pyvis", "networkx"]
dashboard = ["dash", "dash-cytoscape"]
lint = ["ai-api-lint"]
mcp = ["mcp"]
all = ["networkx", "pyyaml", "numpy", "sentence-transformers", "rapidfuzz", "langchain-core", "pyvis", "ai-api-lint", "dash", "dash-cytoscape", "mcp"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-asyncio = "^0.23"
ruff = ">=0.11"
pre-commit = "^4.0"
langgraph-bigtool = "^0.0.3"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]