-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1017 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1017 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 = "comms"
version = "3.0.0"
description = "A command line tool for comparative analysis of proteomic data"
readme = "README.md"
authors = [
{ name = "Sam Holland", email = "hol_sam@icloud.com" }
]
requires-python = ">=3.14"
dependencies = [
"pandas>=3.0.2",
"platformdirs>=4.9.6",
"pyside6>=6.11.1",
"rich>=15.0.0",
"tomli-w>=1.2.0",
"tqdm>=4.67.3",
"typer>=0.24.1",
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
]
[project.scripts]
comms = "comms.main:comms"
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=short -ra --cov=src/comms --cov-report=term-missing"
minversion = "7.0"
markers = [
"crux: requires the Crux binary to be present under bin/ (auto-skipped if absent)",
"trfp: requires ThermoRawFileParser.exe to be present under bin/ (auto-skipped if absent)",
]
[tool.coverage.run]
source = ["src"]
relative_files = true