-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.46 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
61
62
[tool.poetry]
name = "quantms-rescoring"
description = "quantms-rescoring: Python scripts and helpers for the quantMS workflow"
readme = "README.md"
license = "MIT"
version = "0.0.4"
authors = [
"Yasset Perez-Riverol <[email protected]>",
"Dai Chengxin <[email protected]>",
"Julianus Pfeuffer <[email protected]>"
]
keywords = [
"quantms",
"proteomics",
"mass-spectrometry",
"data-analysis",
"big data"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable"
]
packages = [
{ include = "quantmsrescore" }
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
click = "*"
pyopenms = "*"
ms2rescore = "3.0.3"
pandas = "*"
numpy = "*"
psm-utils = "0.8.3"
deepLC = "2.2.38"
scipy = "1.13.1"
pygam = "*"
protobuf= "3.19.6"
[tool.poetry.urls]
GitHub = "https://github.com/bigbio/quantms-rescoring"
PyPi = "https://pypi.org/project/quantms-rescoring/"
Quantms = "https://quantms.org"
LICENSE = "https://github.com/bigbio/quantms-rescoring/blob/main/LICENSE"
[tool.poetry.scripts]
rescoring = "quantmsrescore.rescoring:main"
[tool.isort]
profile = "black"
[tool.black]
line-length = 99
target-version = ["py39"]
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"