-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
82 lines (75 loc) · 2.21 KB
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
73
74
75
76
77
78
79
80
81
82
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{email = "contact@kidger.site", name = "Patrick Kidger"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics"
]
dependencies = ["wadler_lindig>=0.1.3"]
description = "Type annotations and runtime checking for shape and dtype of JAX/NumPy/PyTorch/etc. arrays."
entry-points = {pytest11 = {jaxtyping = "jaxtyping._pytest_plugin"}}
keywords = ["jax", "neural-networks", "deep-learning", "equinox", "typing"]
license = {file = "LICENSE"}
name = "jaxtyping"
readme = "README.md"
requires-python = ">=3.11"
urls = {repository = "https://github.com/patrick-kidger/jaxtyping"}
version = "0.3.9"
[project.optional-dependencies]
dev = [
"pre-commit>=4.3.0"
]
docs = [
"hippogriffe==0.2.2",
"griffe==1.7.3",
"mkdocs==1.6.1",
"mkdocs-include-exclude-files==0.1.0",
"mkdocs-ipynb==0.1.1",
"mkdocs-material==9.6.7",
"mkdocstrings==0.28.3",
"mkdocstrings-python==1.16.8",
"pygments==2.20.0",
"pymdown-extensions==10.21.2"
]
tests = [
"beartype>=0.21.0",
"cloudpickle>=3.1.1",
"equinox>=0.13.1",
"ipython>=8.37.0",
"jax>=0.9.0.1",
"mlx[cpu]>=0.29.1",
"numpy",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"tensorflow>=2.18.1; python_version <= '3.12'",
"typeguard==2.13.3"
]
[tool.hatch.build]
include = ["jaxtyping/*"]
[tool.ruff.lint]
ignore = ["E721", "E731", "F722"]
select = ["E", "F", "I001"]
[tool.ruff.lint.flake8-import-conventions.extend-aliases]
"collections" = "co"
"functools" = "ft"
"itertools" = "it"
[tool.ruff.lint.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
lines-after-imports = 2
order-by-type = false
[tool.ruff.lint.per-file-ignores]
"jaxtyping/_typeguard/__init__.py" = ["E", "F", "I001"]