DB-GPT/packages/dbgpt-client/pyproject.toml
Fangyin Cheng e4b329ee21
refactor(v0.7.0): restructure modules and config handling (#2358)
Co-authored-by: aries_ckt <916701291@qq.com>
2025-02-21 19:54:53 +08:00

37 lines
899 B
TOML

[project]
name = "dbgpt-client"
version = "0.7.0"
description = "Add your description here"
authors = [
{ name = "csunny", email = "cfqcsunny@gmail.com" }
]
license = "MIT"
readme = "README.md"
requires-python = ">= 3.10"
dependencies = ["dbgpt-serve"]
[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/*"
]