-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
39 lines (34 loc) · 1022 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "zoDIAq"
version = "2.1.2"
authors = [
{ name="Caleb Cranney", email="[email protected]" },
]
description = "Bioinformatics software package for identifying peptides and proteins in DIA and DISPA mass spectrometry data files."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
'pyteomics>=4.4.1',
'matplotlib>=3.3.4',
'numba>=0.53.1',
'numpy<2.0',
'pandas>=1.2.2',
'Bio>=0.4.1',
'PyQt5>=5.15.4',
'lxml>=4.6.2',
'scikit-learn>=1.1.2',
]
[project.urls]
"Homepage" = "https://github.com/xomicsdatascience/zoDIAq"
"Bug Tracker" = "https://github.com/xomicsdatascience/zoDIAq/issues"
[project.scripts]
zodiaq = "zodiaq.zodiaq:main"