-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.13 KB
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
40
41
42
43
44
45
46
47
48
[project]
name = "pyobvector"
version = "0.2.25"
description = "A python SDK for OceanBase Vector Store, based on SQLAlchemy, compatible with Milvus API."
authors = [{name="shanhaikang.shk",email="shanhaikang.shk@oceanbase.com"}]
readme = "README.md"
license = "Apache-2.0"
keywords = ["oceanbase", "vector store", "obvector"]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.17.0",
"sqlalchemy>=1.4,<=3",
"pymysql>=1.1.1",
"aiomysql>=0.3.2",
"sqlglot>=26.0.1",
"pydantic>=2.7.0,<3"
]
[project.optional-dependencies]
# pyseekdb requires Python>=3.11; only install on 3.11+ so uv sync --dev works on 3.10
pyseekdb = ["pyseekdb>=0.1.0; python_version >= '3.11'"]
[project.urls]
Homepage = "https://github.com/oceanbase/pyobvector"
Repository = "https://github.com/oceanbase/pyobvector.git"
[dependency-groups]
dev = [
"pytest>=8.2.2",
"pylint>=3.2.7",
"prek>=0.2.17",
"ruff>=0.14.10",
"sphinx>=7.2.6",
]
[tool.pytest.ini_options]
log_level = "INFO"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = [
"UP", # pyupgrade
"F401", # unused-import
]