-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "haliax"
# Set for release builds
#version = "1.3"
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 require that you install jax yourself, since the extras vary by system.
# jax = {version = ">=0.4.19,<0.5.0"}
"equinox>=0.10.6",
"jaxtyping>=0.2.20",
"jmp>=0.0.4",
"safetensors>=0.4.3"
]
dynamic =[ "version" ]
[project.optional-dependencies]
dev=["pytest >= 7.4.0", "mypy >= 0.910", "mkdocs >= 1.4.3", "mkdocs-material >= 7.3.3", "mkdocstrings >= 0.22.0",
"mkdocs-literate-nav >= 0.6.0", "mkdocs-macros-plugin >= 0.7.0", "mkdocstrings-python >= 1.1.2",
"mkdocs-include-markdown-plugin",
"pymdown-extensions",
"pygments",
"pymdown-extensions",
"chex>=0.1.86"
]
[tool.hatch.version]
path = "src/haliax/__about__.py"
[options]
packages = ["haliax", "haliax.*"]
[options.package_data]
haliax = ["src/haliax/*"]
[tool.black]
line-length = 119
target-version = ["py310"]
preview = true
[tool.isort]
profile = "black"
multi_line_output = 3
lines_after_imports = 2
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 119
src_paths = ["src", "tests"]
[project.urls]
"Homepage" = "https://github.com/stanford-crfm/haliax"
"Bug Tracker" = "https://github.com/stanford-crfm/haliax/issues/"
"Documentation" = "https://haliax.readthedocs.io/en/latest/"