forked from oceanbase/pyseekdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 774 Bytes
/
pyproject.toml
File metadata and controls
30 lines (24 loc) · 774 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
[tool.poetry]
name = "pyseekdb"
version = "0.1.0.dev5"
description = "A unified Python client for SeekDB that supports embedded, server, and OceanBase."
authors = ["OceanBase <open_oceanbase@oceanbase.com>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/oceanbase/pyseekdb/"
repository = "https://github.com/oceanbase/pyseekdb/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/oceanbase/pyseekdb/issues"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
pymysql = "^1.1.1"
pylibseekdb = "*"
sentence-transformers = {version = "*"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pylint = "^3.2.7"
[tool.pytest.ini_options]
log_level = "INFO"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"