-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.3 KB
/
pyproject.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "dbgpt-app"
version = "0.7.1"
description = "Add your description here"
authors = [
{ name = "csunny", email = "[email protected]" }
]
license = "MIT"
readme = "README.md"
requires-python = ">= 3.10"
dependencies = [
"dbgpt-acc-auto",
"dbgpt",
"dbgpt-ext",
"dbgpt-serve",
"dbgpt-client",
"aiofiles",
"pyparsing",
]
[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"
[project.optional-dependencies]
cache = [
"rocksdict",
]
observability = [
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-exporter-otlp",
]
base = [
"dbgpt[client,cli,agent,simple_framework,framework,code]"
]
dbgpts = [
# For build dbgpts apps, we will be removed in the future.
"build",
"poetry"
]
[tool.uv]
managed = true
dev-dependencies = []
[tool.hatch.build.targets.wheel]
packages = ["src/dbgpt_app"]
exclude = [
"src/dbgpt_app/**/tests",
"src/dbgpt_app/**/tests/*",
"src/dbgpt_app/tests",
"src/dbgpt_app/tests/*",
"src/dbgpt_app/**/examples",
"src/dbgpt_app/**/examples/*"
]