forked from volcengine/vikingdb-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.24 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vikingdb-python-sdk"
dynamic = ["version"]
description = "vikingdb Python SDK"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = ["vikingdb", "vector", "bytedance", "volcengine", "sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"httpx>=0.24.1",
"requests>=2.28.1",
"pydantic>=2.5.3",
"typing_extensions>=4.9.0",
"urllib3>=1.21.1",
"volcengine>=1.0.0",
"aiohttp>=3.10.0",
]
[project.urls]
Documentation = "https://github.com/volcengine/volc-vikingdb-python-sdk/README.md"
Source = "https://github.com/volcengine/volc-vikingdb-python-sdk"
[tool.setuptools.packages.find]
where = ["."]
include = ["vikingdb*"]
[tool.setuptools.dynamic]
version = {attr = "vikingdb.version.__version__"}
[dependency-groups]
dev = [
"pytest>=7.4.4",
"ruff>=0.14.3",
]