-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 884 Bytes
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 884 Bytes
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
[project]
name = "simply"
version = "0.3.7"
description = "Simply: Minimal Code for Frontier LLM Research in JAX"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"absl-py>=2.3.1",
"datasets",
"deprecated",
"einops>=0.8.1",
"grain>=0.2.15",
"orbax>=0.1.9",
"sentencepiece",
"setuptools<81",
"tensorboard>=2.20.0",
"tensorboardX",
"jax",
"tokenizers",
"wandb>=0.25.0",
]
[project.optional-dependencies]
gpu = [
"jax[cuda13]; sys_platform == 'linux'",
]
tpu = [
"jax[tpu]>=0.8.2; sys_platform == 'linux'",
]
tfds = [
"tensorflow-cpu; sys_platform != 'darwin'",
"tensorflow; sys_platform == 'darwin'",
"tensorflow-datasets>=4.9.9",
]
gcloud = [
"gcsfs",
]
math-eval = [
"sympy",
"pylatexenc",
]
dev = [
"pytest",
]
[tool.setuptools.packages.find]
include = ["simply", "simply.*"]