fix: docs update

This commit is contained in:
csunny 2023-05-25 17:17:17 +08:00
commit 8a8de2ecd8
2 changed files with 13 additions and 0 deletions

View File

@ -7,6 +7,8 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
import toml
import os
import sys
project = "DB-GPT"
copyright = "2023, csunny"

View File

@ -117,3 +117,14 @@ types-chardet = "^5.0.4.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = [
".venv",
"__pycache__",
".ipynb_checkpoints",
".mypy_cache",
".ruff_cache",
"examples",
"notebooks",
]