-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1005 Bytes
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1005 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
49
50
51
52
53
54
55
[project]
name = "julax"
version = "0.0.8"
description = "Just Layers over JAX"
readme = "README.md"
authors = [
{ name = "Jun Tian", email = "tianjun.cpp@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"einops>=0.8.1",
"grain>=0.2.12",
"humanize>=4.13.0",
"jax>=0.7.2",
"optax>=0.2.6",
"orbax-checkpoint>=0.11.25",
"plum-dispatch>=2.5.8",
"pydantic>=2.12.0",
]
[project.scripts]
julax = "julax:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
tpu = [
"jax[tpu]>=0.7.2",
"tpu-info>=0.8.1",
]
[tool.ruff.lint]
ignore = ["E741", "F811"]
[[tool.uv.index]]
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true
[tool.uv.workspace]
members = [
"examples/01_mnist",
"examples/02_mini_transformer",
"examples/03_Llama_3",
".",
]
[dependency-groups]
dev = [
"ipython>=9.9.0",
"pytest>=8.4.2",
"tensorboard>=2.20.0",
"xprof>=2.21.4",
]