-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 834 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jaxtorch"
dynamic = ["version"]
description = "A jax based nn library"
readme = "README.md"
authors = [
{ name = "Emily Shepperd" }
]
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
dependencies = ["numpy", "jax>=0.4.38"]
[dependency-groups]
test = ["pytest", "torch", "cbor2", "jax[cuda12]", "einops"]
demo = ["tqdm", "optax", "jax[cuda12]", "ipykernel"]
[project.urls]
Homepage = "https://github.com/nshepperd/jaxtorch"
[tool.hatch.version]
path = "jaxtorch/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["jaxtorch"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]