-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (64 loc) · 1.79 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
[project]
name = "isax"
version = "0.1.1"
description = "Ising Models in JAX"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "lockwo"}
]
keywords = ["jax", "ising-model", "graphical-models", "machine-learning", "boltzmann-machine"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
urls = { repository = "https://github.com/lockwo/isax" }
dependencies = [
"equinox>=0.11.2",
"jaxtyping>=0.2.23",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
examples = [
"matplotlib>=3.7.1",
]
testing = [
"pytest==7.2.0",
"nbmake==1.4.3",
"pyright==1.1.408",
"pre-commit>=4.0.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",
"pymdown-extensions==10.14.3",
]
[tool.setuptools]
packages = { find = { include = ["isax", "isax.*"] } }
[tool.isort]
profile = "black"
combine_as_imports = true
lines_after_imports = -1
order_by_type = false
[tool.pyright]
reportIncompatibleMethodOverride = true
reportIncompatibleVariableOverride = false # Incompatible with eqx.AbstractVar
reportUnnecessaryTypeIgnoreComment = true
include = ["isax"]