-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.98 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
[project]
name = "distreqx"
version = "0.0.2"
description = "Lightweight JAX library of probability distributions and bijectors."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Owen Lockwood"},
]
keywords = ["jax", "probability", "distributions", "equinox", "machine-learning"]
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 :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = {repository = "https://github.com/lockwo/distreqx"}
dependencies = ["equinox>=0.11.1", "jaxtyping>=0.2.20", "ihoop>=0.1.1"]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.hatch.build]
include = ["distreqx/*"]
[project.optional-dependencies]
test = [
"beartype",
"jax[cpu]",
"parameterized",
"pytest",
]
docs = [
"hippogriffe==0.2.2",
"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",
"pymdown-extensions==10.14.3"
]
[tool.pytest.ini_options]
addopts = "--jaxtyping-packages=distreqx,beartype.beartype(conf=beartype.BeartypeConf(strategy=beartype.BeartypeStrategy.On))"
[tool.isort]
profile = "black"
combine_as_imports = true
lines_after_imports = -1
extra_standard_library = ["typing_extensions"]
order_by_type = false
[tool.pyright]
reportIncompatibleMethodOverride = true
include = ["distreqx", "tests"]