-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
executable file
·47 lines (43 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lbt"
version = "0.0.1"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"tqdm",
"pandas",
"datasets",
"openai", "tenacity", # API model
"fschat", "transformers", "accelerate", # open-source model (based on fastchat and huggingface Transformer)
"termcolor",
"PyYaml",
"ipdb",
"ipython",
"faiss-gpu", # QuesSimilarityExamMaker
"sentence-transformers", # QuesSimilarityExamMaker
"flash-attn",
"auto-gptq", "optimum", # Qwen-72B-Chat-Int4
"openai==1.16.2",
"gradio",
"tomark",
"Jinja2",
"pyext",
"ninja",
"python-leetcode",
"pydantic",
"bs4",
"html2text",
"requests",
"python-dotenv"
]
[project.optional-dependencies]
dev = ["pre-commit", "black"]
[tool.setuptools.packages.find]
exclude = ["docs", "dist*", "scripts*", "tests*", "data*", "results*"]
[tool.wheel]
exclude = ["docs", "dist*", "scripts*", "tests*", "data*", "results*"]