-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 954 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
[build-system]
requires = ["setuptools>=58.0.4", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jax-sourceror"
version = "0.0.1"
authors = [
{ name="David Hall", email="[email protected]" },
]
description = "Named Tensors for Legible Deep Learning in JAX"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
]
dependencies = [
# we'll require that you install jax yourself, since the extras vary by system.
# jax = {version = ">=0.4.10,<0.5.0"}
"jax",
"numpy",
"ast_comments",
"equinox"
]
[project.urls]
"Homepage" = "https://github.com/dlwh/jax-sourceror"
"Bug Tracker" = "https://github.com/dlwh/jax-sourceror/issues"