-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (69 loc) · 1.87 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
73
74
75
76
77
78
79
[project]
name = "mccube"
version = "0.0.3"
description = "Markov chain cubature via JAX."
readme = "README.md"
license = {file = "LICENSE"}
authors = [{name = "The MCCube team", email = "T.Coxon2@lboro.ac.uk"}]
keywords = [
"sampling",
"probability",
"cubature",
"stochastic differential equations",
"mcmc",
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
requires-python = ">=3.9"
dependencies = [
"diffrax>=0.5.0",
"equinox>=0.11.2",
"jax>=0.4.23",
"jaxtyping>=0.2.25",
"scikit-learn>=1.3.2",
"typing_extensions>=4.9.0"
]
[project.urls]
homepage = "https://github.com/tttc3/mccube"
documentation = "https://mccube.readthedocs.io"
repository = "https://github.com/tttc3/mccube"
[project.optional-dependencies]
test = [
"beartype",
"pytest",
"jaxlib"
]
dev = [
"mccube[test]",
"pre-commit",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["mccube/*"]
[tool.pytest.ini_options]
addopts = "--jaxtyping-packages=mccube,beartype.beartype(conf=beartype.BeartypeConf(strategy=beartype.BeartypeStrategy.On))"
[tool.jupytext]
formats = "ipynb, md"
[tool.ruff]
extend-include = ["*.ipynb"]
fixable = ["I001", "F401"]
ignore = ["F722"]
[tool.ruff.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
order-by-type = false
[tool.pyright]
typeCheckingMode = "standard"
include = ["mccube", "tests"]