-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 836 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
[project]
name = "sensible-fitting"
version = "0.1.0"
description = "Small, opinionated fitting framework for AMO-style workflows"
readme = "README.md"
authors = [
{ name = "tomhepz", email = "9285131+tomhepz@users.noreply.github.com" }
]
requires-python = ">=3.11"
dependencies = [
"numpy>=2.3.5",
"scipy>=1.16.3",
]
[project.optional-dependencies]
plot = [
"matplotlib>=3.10.7",
]
uncertainties = [
"uncertainties>=3.2.3",
]
bayes = [
"ultranest>=4.4.0",
"h5py>=3.15.1",
]
[build-system]
requires = ["uv_build>=0.9.11,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"matplotlib>=3.10.7",
"pytest>=8.2.0",
"pyqt6>=6.10.1",
"uncertainties>=3.2.3",
"ultranest>=4.4.0",
"h5py>=3.15.1",
]
[tool.pytest.ini_options]
markers = [
"examples: run example scripts",
]