-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (50 loc) · 1.54 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "peak_performance"
version = "0.7.1"
authors = [
{name = "Jochen Nießer", email = "j.niesser@fz-juelich.de"},
{name = "Michael Osthege", email = "m.osthege@fz-juelich.de"},
]
description = "A Python toolbox to fit chromatography peaks with uncertainty."
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["dependencies"]
keywords = ["hplc", "mass-spectrometry", "uncertainty quantification"]
license = {text = "AGPLv3"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Science/Research",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = { file = ["requirements-dev.txt"] }}
[tool.setuptools.packages.find]
include = ["peak_performance*"]
[project.urls]
homepage = "https://jugit.fz-juelich.de/IBG-1/micropro/peak-performance"
documentation = "https://jugit.fz-juelich.de/IBG-1/micropro/peak-performance"
repository = "https://jugit.fz-juelich.de/IBG-1/micropro/peak-performance"
[tool.pytest.ini_options]
xfail_strict=true
[tool.black]
line-length = 100
[tool.ruff]
line-length = 140
ignore-init-module-imports = true
[tool.coverage.run]
omit = [
# exclude tests files from coverage calculation
"**/test*.py",
"**/example",
"**/notebooks",
]
[tool.mypy]
ignore_missing_imports = true
exclude = [
'test_.*?\.py$',
]