-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.01 KB
/
pyproject.toml
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
[project]
name = "tilores-langchain"
version = "0.2.0"
authors = [
{ name="Lukas Rieder", email="[email protected]" },
{ name="Stefan Berkner", email="[email protected]" },
]
description = "This package contains tools to work with Tilores entity resolution database within Langchain."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["entity-resolution", "tilores", "graph-raq", "identity-raq", "langchain", "langchain-tool"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"tilores-sdk>=0.4.0",
]
[project.optional-dependencies]
all = ["tilores-langchain[langchain]"]
langchain = ["langchain", "openai"]
test = [
"pytest==8.3.2",
]
[project.urls]
Homepage = "https://github.com/tilotech/tilores-langchain"
Issues = "https://github.com/tilotech/tilores-langchain/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"