-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (77 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
88 lines (77 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
81
82
83
84
85
86
87
88
[project]
name = "psm-utils"
description = "Common utilities for parsing and handling peptide-spectrum matches and search engine results."
readme = "README.rst"
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = ["proteomics", "peptide", "spectrum", "identification", "parsing"]
authors = [
{ name = "Ralf Gabriels", email = "ralf@gabriels.dev" },
{ name = "Robbin Bouwmeester", email = "robbin.bouwmeester@ugent.be" },
{ name = "Arthur Declercq", email = "arthur.declercq@ugent.be" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 4 - Beta",
]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"click",
"lxml",
"numpy",
"pandas",
"psims",
"pyarrow",
"pydantic >= 2",
"pyteomics >= 4",
"rich",
"sqlalchemy >= 2",
]
[project.optional-dependencies]
dev = ["ruff", "isort>5", "pytest", "pytest-cov", "mypy"]
docs = [
"numpydoc>=1,<2",
"recommonmark",
"semver>=2",
"sphinx_rtd_theme",
"sphinx-autobuild",
"sphinx-mdinclude",
"sphinx",
"toml",
]
online = ["streamlit", "plotly"]
idxml = ["pyopenms"]
cbor = ["cbor2 >= 5"]
io = ["pyopenms", "cbor2 >= 5"]
[project.urls]
GitHub = "https://github.com/compomics/psm_utils"
ReadTheDocs = "https://psm-utils.readthedocs.io"
PyPi = "https://pypi.org/project/psm-utils/"
CompOmics = "https://www.compomics.com"
[project.scripts]
psm_utils = "psm_utils.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["psm_utils*"]
[tool.setuptools.dynamic]
version = { attr = "psm_utils.__version__" }
[tool.isort]
profile = "black"
[tool.black]
line-length = 99
target-version = ['py310']
[tool.ruff]
line-length = 99
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "PD", "D", "UP"]
ignore = ["D203", "D212"]
[tool.mypy]
files = ["psm_utils/**/*.py"]
install_types = true