fix: docs

This commit is contained in:
csunny 2023-05-25 16:24:09 +08:00
parent bd0603ff99
commit 1d35ada19d
2 changed files with 6 additions and 0 deletions

View File

@ -7,11 +7,14 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
import toml
import os
import sys
project = "DB-GPT"
copyright = "2023, csunny"
author = "csunny"
sys.path.insert(0, os.path.abspath("../"))
with open("../pilot/VERSION") as f:
version = f.read()

View File

@ -13,6 +13,9 @@ ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["notebooks", "build", "examples"]
[tool.setuptools]
py-modules = []
[tool.ruff]
exclude = [
".venv",