-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 896 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
[tool.poetry]
name = "docapi"
version = "1.1.14"
description = "DocAPI is a Python package that automatically generates API documentation using LLMs. It currently supports Flask and Django frameworks."
authors = ["zhangshulin <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/NewToolAI/docapi"
[tool.poetry.dependencies]
python = ">=3.8,<4"
openai = "^1.35.8"
fire = "^0.7.0"
pyyaml = "^6.0.2"
mkdocs = "^1.6.1"
qianfan = "^0.4.12.1"
zhipuai = "^2.1.5.20230904"
python-dotenv = "^1.0.1"
flask = { version = "^3.0.0", optional = true }
django = { version = ">=3.0.0", optional = true }
tqdm = "^4.67.1"
ipython = "^8.0.0"
[tool.poetry.extras]
flask = ["flask"]
django = ["django"]
all = ["flask", "django"]
[tool.poetry.scripts]
docapi = "docapi.main:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"