-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (61 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
74 lines (61 loc) · 1.67 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
[project]
name = "ideeplc"
description = "iDeepLC: A deep Learning-based retention time predictor for unseen modified peptides with a novel encoding system"
readme = "README.md"
authors = [
{name = "Alireza Nameni", email = "alireza.nameni@ugent.be"},
{name = "Robbin Bouwmeester", email = "robbin.bouwmeester@ugent.be"}
]
license = {file = "LICENSE"}
keywords = ["iDeepLC", "deep learning", "retention time", "proteomics", "peptide prediction"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable",
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"matplotlib>=3.7,<4",
"numpy>=1.25,<2",
"pandas>=2,<3",
"pyteomics>=4.5,<5",
"torch>=2.2.1,<3",
"scikit-learn>=1.4,<2",
"rich>=13",
"lxml>=4.9,<5",
]
[project.optional-dependencies]
gui = [
"pillow>=9.5",
"requests>=2.31",
]
dev = [
"pytest",
"pytest-cov",
"sphinx",
"black",
"flake8"
]
[tool.setuptools.package-data]
ideeplc = [
"models/*.pth",
"structure_feature/*.csv",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ideeplc"]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "ideeplc.__version__"}
[project.scripts]
ideeplc = "ideeplc.__main__:main"
ideeplc-mod-features = "ideeplc.mod_features:main"
[project.urls]
GitHub = "https://github.com/CompOmics/iDeepLC"
CompOmics = "https://www.compomics.com"