-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1018 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
[project]
name = "deterministic-gaussian-sampling-fibonacci"
version = "0.2.5"
description = "Deterministic sampling via orthogonal inverse transform of low-discrepancy Fibonacci grids."
authors = [
{name = "Vlad Korsakov",email = "[email protected]"},
{name = "Daniel Frisch",email = "[email protected]"}
]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy (>=2.0.0,<3.0.0)",
"scipy>=1.15,<1.16; python_version < '3.11'",
"scipy>=1.16.3,<2.0.0; python_version >= '3.11'",
"h5py (>=3.15.1,<4.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
include = [
{ path = "src/deterministic_gaussian_sampling_fibonacci/data/**/*.mat", format = "wheel" },
{ path = "src/deterministic_gaussian_sampling_fibonacci/data/**/*.mat", format = "sdist" },
]
[dependency-groups]
dev = [
"pytest (>=9.0.2,<10.0.0)",
"matplotlib (>=3.10.8,<4.0.0)"
]