-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1 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
[project]
name = "rimseval"
version = "2.1.0"
description = "Evaluate resonance ionization mass spectrometry measurements, correct, and filter. Contains a reader for crd files (Chicago Raw Data) but can also convert FastComTec lst files to crd."
authors = [
{ name = "Reto Trappitsch", email = "reto@galactic-forensics.space" }
]
dependencies = [
"iniabu>=1.1.2",
"matplotlib",
"numba~=0.61",
"numpy~=2.2",
"PyQt6",
"scipy",
"xlsxwriter"
]
readme = "README.rst"
requires-python = ">=3.10,<3.13"
license = { text = "MIT" }
[project.urls]
Source = "https://github.com/RIMS-Code/RIMSEval"
Documentation = "https://rimseval.readthedocs.io"
[build-system]
requires = ["uv_build>=0.8.12,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ruff",
"hypothesis",
"pytest>=6.0.0",
"pytest-cov",
"pytest-mock",
"pytest-sugar",
]
docs = [
"sphinx-rtd-theme>=3.0.2",
]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "--cov=rimseval -v"
testpaths = "tests"