-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 917 Bytes
/
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
[project]
name = "liteai"
version = "0.2.0"
description = "lite ai client"
requires-python = ">=3.10"
dependencies = [
"python-snippets>=0.1.3",
"python-dotenv>=1.0.1",
# llm api
"openai>=1.4.1",
"zhipuai>=2.1.4.20230812",
"dashscope>=1.20.0",
"volcengine-python-sdk[ark]>=1.0.94",
"litellm>=1.49.1",
# audio and image
"pillow>=10.3.0",
"pydub>=0.25.1",
]
authors = [{ name = "jerry", email = "[email protected]" }]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
[tool.hatch.build.targets.wheel]
packages = ["liteai"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 140 # 代码最大行宽
select = [ # 选择的规则
"F",
"E",
"W",
"UP",
]
ignore = ["F401", "F405", "UP009", "F403", "F541"] # 忽略的规则