-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
62 lines (58 loc) · 1.22 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
57
58
59
60
61
62
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dc-lms"
version = "1.0.0"
requires-python = ">=3.9.0"
dependencies = [
#====for web
"requests",
"paramiko",
"sanic",
"peewee",
"pandas",
"httpx",
"asyncssh",
"aiofiles",
#====for runtime
"torch",
"transformers==4.33.2",
"deepspeed>=0.11.1",
"sentencepiece",
"protobuf~=3.20.0",
"sanic",
"sanic-ext",
"importlib-metadata",
"accelerate",
"datasets",
"bitsandbytes",
"evaluate",
"scipy",
# "xformers",
"scikit-learn",
"fastjsonschema",
"tiktoken",
# "seqeval",
# "optimum",
# "auto-gptq",
#====for client
"nvidia-ml-py3",
"psutil",
"requests",
"optimum",
"auto-gptq"
]
[tool.setuptools.packages.find]
where = ["."] # ["."] by default
include = ["lms*"] # ["*"] by default
exclude = ["lms.tests*","tests*"] # empty by default
namespaces = true # true by default
[project.scripts]
lms_web = "lms.web.main:main"
lms_rt = "lms.runtime.main:main"
lmsrt = "lms.runtime.main:main"
lms = "lms.client.main:main"
lmsd = "lms.client.daemon.main:main"
[tool.setuptools]
include-package-data = true