-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
98 lines (89 loc) · 2.61 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
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
89
90
91
92
93
94
95
96
97
98
[project]
name = "ms2pip"
description = "MS2PIP: Accurate and versatile peptide fragmentation spectrum prediction."
readme = "README.rst"
license = { file = "LICENSE" }
dynamic = ["version"]
keywords = [
"MS2PIP",
"proteomics",
"peptide fragmentation",
"peak intensity prediction",
"spectrum prediction",
"machine learning",
"spectral library",
"fasta2speclib",
]
authors = [
{ name = "Ralf Gabriels", email = "[email protected]" },
{ name = "Sven Degroeve", email = "[email protected]" },
{ name = "Arthur Declercq", email = "[email protected]" },
{ name = "Kevin Velghe", email = "[email protected]" },
{ name = "Ana Sílvia C. Silva" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.25,<3",
"pandas>=1,<3",
"pyarrow",
"pyteomics>=3.5,<5",
"tomlkit>=0.5,<1",
"sqlalchemy>=1.3,<2",
"click>=7,<9",
"xgboost>=1.3",
"lxml>=4",
"rich>=13",
"pydantic>=2",
"werkzeug>=2",
"psm_utils>=0.9",
"ms2rescore-rs",
]
[project.optional-dependencies]
plotting = ["matplotlib>=3.0", "spectrum-utils>=0.4"]
dev = ["black", "isort>5", "pytest"]
docs = [
"sphinx",
"numpydoc>=1,<2",
"recommonmark",
"toml",
"semver>=2",
"sphinx_rtd_theme",
"sphinx-autobuild",
"sphinx-automodapi",
"sphinx-click",
]
[project.urls]
documentation = "http://compomics.github.io/projects/ms2pip"
source = "https://github.com/compomics/ms2pip"
tracker = "https://github.com/compomics/ms2pip/issues"
webserver = "https://iomics.ugent.be/ms2pip/"
publication = "https://doi.org/10.1093/nar/gkad335/"
[project.scripts]
ms2pip = "ms2pip.__main__:main"
[build-system]
requires = ["setuptools", "cython", "numpy>=2.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["ms2pip*"]
[tool.black]
line-length = 99
target-version = ['py39']
[tool.ruff]
line-length = 99
target-version = 'py39'
[tool.cibuildwheel]
build = "cp3*-manylinux_x86_64 cp3*-win_amd64 cp3*-macosx_x86_64 cp3*-macosx_arm64"
skip = "cp36-* cp37-* cp38-* cp313-*" # No ms2rescore-rs for 3.13
test-command = "ms2pip --help"
[tool.cibuildwheel.macos]
before-all = "brew install libomp"