-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 855 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
[tool.poetry]
name = "tidb-vector"
# this version is useless, now read the version from __init__.py
version = "0.0.0"
description = "A Python client for TiDB Vector"
authors = ["IANTHEREAL <argregoryian@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "tidb_vector"}]
[tool.poetry-version-plugin]
source = "init"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
numpy = ">=1,<3"
SQLAlchemy = {version = ">=1.4,<3", optional = true}
[tool.poetry.extras]
client = ["SQLAlchemy"]
[tool.poetry.group.test.dependencies]
# The only dependencies that should be added are
# dependencies used for running tests.
# Any dependencies that do not meet that criteria will be removed.
pytest = "^7.3.0"
pytest-cov = "^4.0.0"
pytest-dotenv = "^0.5.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"