-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
65 lines (59 loc) · 1.45 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
[tool.poetry]
name = "ibaqpy"
description = "Python package to compute intensity base absolute expression values"
readme = "README.md"
license = "MIT"
version = "0.0.3"
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 = "ibaqpy" }
]
[tool.poetry.dependencies]
python = ">=3.9"
scikit-learn = "*"
pyopenms = "*"
numpy = "<2.1.0"
click = "*"
pandas = "*"
matplotlib = "*"
pyarrow = ">=16.1.0"
duckdb = ">=0.10.1"
qnorm = "*"
scipy = ">=1.10"
seaborn = "*"
typing_extensions = ">=4.6.3"
inmoose = "*"
[tool.poetry.urls]
GitHub = "https://github.com/bigbio/ibaqpy/"
PyPi = "https://pypi.org/project/ibaqpy/"
Quantms = "https://quantms.org"
LICENSE = "https://github.com/bigbio/ibaqpy/blob/main/LICENSE"
[tool.poetry.scripts]
ibaqpyc = "ibaqpy.ibaqpyc: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"