mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-08-01 00:03:29 +00:00
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[project]
|
|
name = "dbgpt-client"
|
|
version = "0.7.3"
|
|
description = "Add your description here"
|
|
authors = [
|
|
{ name = "csunny", email = "cfqcsunny@gmail.com" }
|
|
]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
requires-python = ">= 3.10"
|
|
|
|
dependencies = [
|
|
"dbgpt[client,cli]",
|
|
"dbgpt_ext",
|
|
"shortuuid",
|
|
# 2.0.29 not support duckdb now
|
|
"SQLAlchemy>=2.0.25, <2.0.29",
|
|
# for cache
|
|
"msgpack",
|
|
# for AWEL operator serialization
|
|
"cloudpickle",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/eosphoros-ai/DB-GPT"
|
|
Documentation = "http://docs.dbgpt.cn/docs/overview"
|
|
Repository = "https://github.com/eosphoros-ai/DB-GPT.git"
|
|
Issues = "https://github.com/eosphoros-ai/DB-GPT/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv]
|
|
managed = true
|
|
dev-dependencies = []
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/dbgpt_client"]
|
|
exclude = [
|
|
"src/dbgpt_client/**/tests",
|
|
"src/dbgpt_client/**/tests/*",
|
|
"src/dbgpt_client/tests",
|
|
"src/dbgpt_client/tests/*",
|
|
"src/dbgpt_client/**/examples",
|
|
"src/dbgpt_client/**/examples/*"
|
|
] |