-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 916 Bytes
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
[tool.poetry]
name = "pyrecest"
description = "Framework for recursive Bayesian estimation in Python."
readme = "README.md"
authors = ["Florian Pfaff <pfaff@ias.uni-stuttgart.de>"]
version = "1.0.1"
[tool.poetry.dependencies]
python = ">=3.11,<3.15"
numpy = "*"
scipy = "^1.17.1"
matplotlib = "*"
mpmath = "*"
bayesian-filters = "*"
pyshtools = "*"
beartype = "*"
shapely = "*"
[tool.poetry.extras]
healpy_support = ["healpy"]
pytorch_support = ["torch"]
jax_support = ["jax", "jaxlib", "autograd"]
[tool.poetry.group.dev.dependencies]
healpy = "*"
torch = "*"
jax = "*"
jaxlib = "*"
autograd = "*"
autopep8 = "^2.3.2"
pytest = "*"
parameterized = "*"
[tool.mypy]
check_untyped_defs = true
[tool.ruff]
line-length = 180
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:bayesian_filters.*",
"ignore::DeprecationWarning:mpmath.*",
"ignore::scipy.optimize.OptimizeWarning",
]