-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
73 lines (67 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "langchain-spicedb"
version = "0.1.0"
description = "SpiceDB authorization for LangChain RAG pipelines and agents - fine-grained access control for AI applications"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [
{name = "Sohan Maheshwar", email = "sohan.maheshwar@authzed.com"}
]
keywords = ["langchain", "spicedb", "authorization", "rag", "ai", "llm", "permissions", "langgraph"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
]
dependencies = [
"authzed>=0.7.0",
"grpcio>=1.50.0",
"grpcio-tools>=1.50.0",
]
[project.optional-dependencies]
langchain = [
"langchain-core>=0.1.0",
]
langgraph = [
"langgraph>=0.0.20",
]
all = [
"langchain-core>=0.1.0",
"langgraph>=0.0.20",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.12.0",
"python-dotenv>=1.0.0",
"langchain-openai>=0.0.5",
"langchain-tests>=0.3.0",
]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.12.0",
"langchain-tests>=0.3.0",
]
[project.urls]
Homepage = "https://github.com/authzed/langchain-spicedb"
Documentation = "https://github.com/authzed/langchain-spicedb/blob/main/README.md"
Repository = "https://github.com/authzed/langchain-spicedb"
Issues = "https://github.com/authzed/langchain-spicedb/issues"
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
addopts = "-x"
log_level = "debug"
minversion = "6.0"
asyncio_mode = "auto"