-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.9 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
[tool.poetry]
name = "langchain-graphiti"
version = "0.1.1"
description = "LangChain integration for the Graphiti knowledge graph system."
authors = ["Mirza Bicer <mirzabicer.dev@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "langchain_graphiti", from = "src"}]
homepage = "https://github.com/dev-mirzabicer/langchain_graphiti"
repository = "https://github.com/dev-mirzabicer/langchain_graphiti"
keywords = ["langchain", "langgraph", "graphiti", "knowledge graph", "retriever"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.10, <3.14"
langchain-core = "*"
graphiti-core = "*"
pydantic = "^2.0"
langsmith = "*"
anyio = "*"
nest-asyncio = "*"
[tool.poetry.extras]
openai = ["langchain-openai"]
azure = ["langchain-openai"]
gemini = ["google-genai"]
anthropic = ["anthropic"]
groq = ["groq"]
ollama = ["langchain-openai"]
neo4j = ["neo4j"]
falkordb = ["falkordb"]
[tool.poetry.group.test.dependencies]
pytest = "^7.0.0"
pytest-asyncio = "^0.21.0"
langchain-tests = "*"
ruff = "*"
mypy = "*"
langchain-openai = {version = "*", optional = true}
google-genai = {version = "*", optional = true}
anthropic = {version = "*", optional = true}
groq = {version = "*", optional = true}
neo4j = {version = "*", optional = true}
falkordb = {version = "*", optional = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests",
]
asyncio_mode = "auto"