parent
134b80571a
commit
46e9a8108d
@ -0,0 +1,43 @@ |
||||
[project] |
||||
name = "dbgpt-system" |
||||
version = "0.7.1" |
||||
description = "Add your description here" |
||||
authors = [ |
||||
{ name = "csunny", email = "cfqcsunny@gmail.com" } |
||||
] |
||||
license = "MIT" |
||||
readme = "README.md" |
||||
requires-python = ">= 3.10" |
||||
|
||||
dependencies = [ |
||||
"dbgpt-ext", |
||||
] |
||||
|
||||
[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 = [] |
||||
|
||||
[project.optional-dependencies] |
||||
libro = ["libro>=0.1.25"] |
||||
dbgpts = ["poetry"] |
||||
|
||||
[tool.hatch.build.targets.wheel] |
||||
packages = ["src/dbgpt_system"] |
||||
exclude = [ |
||||
"src/dbgpt_system/**/tests", |
||||
"src/dbgpt_system/**/tests/*", |
||||
"src/dbgpt_system/tests", |
||||
"src/dbgpt_system/tests/*", |
||||
"src/dbgpt_system/**/examples", |
||||
"src/dbgpt_system/**/examples/*" |
||||
] |
@ -0,0 +1,3 @@ |
||||
from ._version import version as __version__ # noqa: F401 |
||||
|
||||
__ALL__ = ["__version__"] |
Loading…
Reference in new issue