-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 976 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 976 Bytes
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
[project]
name = "dbgpt-serve"
version = "0.7.5"
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_serve"]
exclude = [
"src/dbgpt_serve/**/tests",
"src/dbgpt_serve/**/tests/*",
"src/dbgpt_serve/tests",
"src/dbgpt_serve/tests/*",
"src/dbgpt_serve/**/examples",
"src/dbgpt_serve/**/examples/*"
]