-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (56 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (56 loc) · 1.37 KB
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
55
56
57
58
59
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "vita"
version = "0.0.1"
description = "The vita package"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Wei He", email = "hewei79@meituan.com" },
{ name = "Yueqing Sun", email = "sunyueqing@meituan.com" },
{ name = "Hongyan Hao", email = "haohongyan02@meituan.com" },
{ name = "Xueyuan Hao", email = "haoxueyuan03@meituan.com" },
{ name = "Zhikang Xia", email = "xiazhikang@meituan.com" },
{ name = "Qi Gu", email = "guqi03@meituan.com" },
]
dependencies = [
"fs",
"rich",
"ruff>=0.9.1",
"watchdog>=6.0.0",
"plotly>=6.0.0",
"scikit-learn>=1.6.1",
"tabulate>=0.9.0",
"fastapi>=0.115.11",
"uvicorn>=0.34.0",
"pydantic-argparse>=0.10.0",
"pytest>=8.3.5",
"pandas>=2.2.3",
"psutil>=7.0.0",
"loguru>=0.7.3",
"docstring-parser>=0.16",
"litellm>=1.65.0",
"tenacity>=9.0.0",
"matplotlib>=3.10.1",
"seaborn>=0.13.2",
"redis>=5.2.1",
"deepdiff>=8.4.2",
"addict>=2.4.0",
"PyYAML>=6.0.2",
"toml>=0.10.2",
"langfuse>=2.60.7",
"thefuzz",
"holidays",
"typing-extensions>=4.0.0",
"json-repair"
]
[project.scripts]
vita = "vita.cli:main"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
ignore = ["E501", "F401", "F541"]
[tool.ruff]
line-length = 88