-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (31 loc) · 917 Bytes
/
pyproject.toml
File metadata and controls
40 lines (31 loc) · 917 Bytes
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
[project]
name = "singlestore-vectorstore"
version = "0.1.3"
description = "Vector store interface for SingleStore Database"
authors = [
{name = "Volodymyr Tkachuk",email = "vtkachuk-ua@singlestore.com"}
]
license = {text = "Apache License (2.0)"}
readme = "README.md"
dependencies = [
"singlestoredb (>=1.13.0,<2.0.0)",
"sqlalchemy (>=2.0.40,<3.0.0)"
]
[project.urls]
Homepage = "https://github.com/singlestore-labs/vectorstore"
Issues = "https://github.com/singlestore-labs/vectorstore/issues"
[tool.poetry]
name = "singlestore-vectorstore"
packages = [{include = "vectorstore"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
docker = "^7.1.0"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
codespell = "^2.4.1"
ruff = "^0.11.9"