forked from apconw/sanic-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.12 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
[tool.poetry]
name = "app"
version = "0.1.0"
description = ""
package-mode = true
authors = ["lihuan <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
sanic = "^24.6.0"
sqlalchemy = "^2.0.31"
aiomysql = "^0.2.0"
requests = "^2.32.3"
redis = "^5.0.7"
pytest = "^8.3.2"
numpy = "1.26.4"
pyyaml = "^6.0.1"
duckdb = "^1.0.0"
openpyxl = "^3.1.5"
seaborn = "^0.13.2"
langchain = "^0.2.14"
pdfplumber = "^0.11.3"
python-docx = "^1.1.2"
ollama = "^0.3.1"
langchain-community = "^0.2.12"
python-dotenv = "^1.0.1"
pandasai = "^2.2.15"
minio = "^7.2.8"
pyjwt = "^2.9.0"
selenium = "^4.26.0"
bs4 = "^0.0.2"
sanic-ext = "^23.12.0"
mammoth = "^1.9.0"
markdownify = "^0.14.1"
pymupdf = "^1.25.2"
beautifulsoup4 = "^4.13.3"
lxml = "^5.3.1"
selenium-stealth = "^1.0.6"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# 格式化代码插件
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''/(\.git|\.hg|\.mypy_cache|\.tox|\.venv|_build|buck-out|build|dist)/'''