forked from xjdr-alt/entropix
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (54 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
56 lines (54 loc) · 1.05 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
[project]
name = "entropix-local-llm"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"blobfile>=3.0.0",
"einops>=0.8.0",
"fairscale>=0.4.13",
"flax>=0.9.0",
"huggingface-hub[cli]>=0.25.1",
"jax>=0.4.34",
"ml-dtypes>=0.5.0",
"mlx>=0.18.0",
"mlx-lm>=0.19.1",
"pydantic>=2.9.2",
"pytest>=8.3.3",
"rich>=13.9.2",
"ruff>=0.6.9",
"setuptools>=75.1.0",
"tiktoken>=0.8.0",
"torch>=2.4.1",
"transformers>=4.45.1",
"tyro>=0.8.11",
"accelerate>=1.0.1",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.ruff]
extend-exclude = ["tests/**"]
lint.select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# Ruff
"RUF",
]
lint.ignore = [
"E501", # ignore line-length (e.g. long docstring)
"SIM117", # ignore combine with statements (it leads to harder to read code)
]
line-length = 88
indent-width = 4