-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 2.08 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (73 loc) · 2.08 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
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "pyerrors"
dynamic = ["version"]
description = "Error propagation and statistical analysis for Monte Carlo simulations"
readme = "README.md"
requires-python = ">=3.10.0"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Fabian Joswig", email = "fabian.joswig@ed.ac.uk" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=2.0",
"autograd>=1.7.0",
"numdifftools>=0.9.41",
"matplotlib>=3.9",
"scipy>=1.13",
"iminuit>=2.28",
"h5py>=3.11",
"lxml>=5.0",
"python-rapidjson>=1.20",
"pandas>=2.2",
"odrpack>=0.5",
]
[dependency-groups]
test = [
"pytest",
"pytest-cov",
"pytest-benchmark",
"hypothesis",
]
examples = [
{ include-group = "test" },
"nbmake",
"pytest-xdist",
]
docs = ["pdoc"]
lint = ["ruff"]
release = ["build"]
[project.urls]
Homepage = "https://github.com/fjosw/pyerrors"
Documentation = "https://fjosw.github.io/pyerrors/pyerrors.html"
"Bug Tracker" = "https://github.com/fjosw/pyerrors/issues"
Changelog = "https://github.com/fjosw/pyerrors/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = { attr = "pyerrors.version.__version__" }
[tool.setuptools.packages.find]
include = ["pyerrors*"]
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "W", "I", "B", "PIE", "PLE", "PLW", "UP", "NPY", "RUF", "F"]
ignore = [
"F403", # star imports in __init__ files are intentional
"E501", # line too long
"PLC0415", # import outside top level
"PLW2901", # redefined loop name (too noisy)
"RUF002", # ambiguous unicode in docstrings (Greek letters)
]