-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.4 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
[project]
authors = [
]
dependencies = [
"numpy<=2.1.0",
"calipytion>=1.0.2,<2.0.0",
"pyenzyme>=2.2.1,<3.0.0",
"pydantic>=2,<3",
"rich>=13.7,<15",
"loguru>=0.7,<1",
]
description = "Tool for processing chromatography data"
license = { text = "MIT" }
name = "chromhandler"
readme = "README.md"
requires-python = ">=3.11,<3.14"
version = "0.10.9"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.27"]
[dependency-groups]
dev = [
"pre-commit>=3.7,<4",
"ruff>=0.6,<1",
"pytest>=8.0.2",
"devtools>=0.12.2",
"mkdocs-material>=9.6.16",
"mkdocstrings[python]>=0.30.0",
"nbval>=0.11.0",
"mkdocs-jupyter>=0.25.1",
"pyright>=1.1.405",
]
[project.urls]
Homepage = "https://github.com/haeussma/chromhandler"
[tool.hatch.build]
exclude = ["tests", "docs", "mkdocs.yml", ".github"]
[tool.hatch.build.targets.wheel]
packages = ["chromhandler", "chromatopy"] # 'chromatopy' shim
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
ignore_missing_imports = true
line_length = 120
plugins = ["pydantic.mypy"]
strict = true
warn_return_any = true
[tool.pytest.ini_options]
markers = [
"readers: marks tests as slow (deselect with '-m \"not slow\"')",
"core: marks tests as core (deselect with '-m \"not core\"')",
]
[tool.ruff.lint]
extend-select = ["I"]