-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (45 loc) · 925 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
45
46
47
48
49
50
[project]
authors = [{ name = "Andy Lo", email = "[email protected]" }]
description = "Add a short description here"
name = "ollm"
requires-python = ">= 3.11"
version = "0.1.0"
dependencies = [
"arxiv-base",
"kaggle",
"scienceplots",
"ml-collections",
"trl",
"peft",
"torch-geometric",
"accelerate",
"transformers",
"absl-py",
"networkx",
"datasets",
"tensorboardx",
"wandb",
"torch>=2.2",
"ruff",
"mypy",
"python-dotenv",
"evaluate",
"scikit-learn",
"vllm>=0.3",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
ollm = { path = ".", editable = true }
[tool.pixi.dependencies]
python = "3.11.*"
uwsgi = "*"
graph-tool = "*"
numba = "*"
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true