-
Notifications
You must be signed in to change notification settings - Fork 398
/
pyproject.toml
56 lines (51 loc) · 1.19 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
55
56
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ochat"
description = "An efficient framework for training and serving top-tier, open-source conversational LLMs."
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"colorama",
"beautifulsoup4",
"markdownify",
"pylatexenc",
"sympy",
"openai>=1",
"tenacity",
"tiktoken",
"tqdm",
"wandb",
"numba",
"datasets",
"orjson",
"torch",
"packaging",
"ninja",
"flash-attn",
"ray",
"sentencepiece",
"transformers>=4.40.1",
"accelerate",
"protobuf",
"fastapi",
"pydantic",
"shortuuid",
"uvicorn",
"vllm>=0.4.0",
"pytest"
]
[project.urls]
"Homepage" = "https://github.com/imoneoi/openchat"
"Bug Tracker" = "https://github.com/imoneoi/openchat/issues"
[tool.setuptools.packages.find]
exclude = ["assets*", "ochat/experimental*"]
[tool.wheel]
exclude = ["assets*", "ochat/experimental*"]
[tool.setuptools_scm]