-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 942 Bytes
/
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-sdk"
version = "0.4.0"
authors = [
{ name="Lukas Rieder", email="[email protected]" },
{ name="Stefan Berkner", email="[email protected]" },
]
description = "This is the offical SDK to develop with the Tilores entity resolution database."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["entity-resolution", "tilores", "graph-rag"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.32.3",
"graphql-core>=3.2.3",
"graphql-query>=1.4.0",
]
[project.optional-dependencies]
test = [
"pytest==8.3.2",
]
[project.urls]
Homepage = "https://github.com/tilotech/python-tilores-sdk"
Issues = "https://github.com/tilotech/python-tilores-sdk/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"