-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.05 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "torch2jax"
version = "0.6.0"
authors = [
{ name="Robert Dyro", email="[email protected]" },
]
description = "Wrap your PyTorch for JAX! This package allows no-copy PyTorch calling from JAX under both eager execution and JIT."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"jax",
"torch",
]
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
"mdx_truly_sane_lists",
]
[tool.setuptools.package-data]
torch2jax = ["cpp/*"]
[build-system]
requires = ["setuptools", "wheel", "toml"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/rdyro/torch2jax"
"Bug Tracker" = "https://github.com/rdyro/torch2jax"
[tool.ruff]
indent-width = 4
line-length = 120
[tool.ruff.lint]
select = ["E", "F"]
ignore = [
"E731", # allow lambda-s instead of def-s
]