-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (58 loc) · 1.52 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
[project]
name = "im2deep"
description = "Framework for prediction of collisional cross-section of peptides."
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["proteomics", "peptide", "timsTOF", "CCS"]
authors = [
{ name = "Robbe Devreese", email = "robbe.devreese@ugent.be" },
{ name = "Robbin Bouwmeester", email = "robbin.bouwmeester@ugent.be" },
{ name = "Ralf Gabriels", email = "ralf@gabriels.dev" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"click",
"deeplc",
"psm_utils",
"pandas",
"numpy",
"rich"
]
[project.optional-dependencies]
dev = ["black", "isort>5", "pytest", "pytest-cov"]
docs = [
"sphinx",
"numpydoc>=1,<2",
"recommonmark",
"sphinx-mdinclude",
"toml",
"semver>=2",
"sphinx_rtd_theme",
"sphinx-autobuild",
]
[project.urls]
GitHub = "https://github.com/CompOmics/IM2Deep"
CompOmics = "https://www.compomics.com"
[project.scripts]
im2deep = "im2deep.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "im2deep.__version__"}
[tool.isort]
profile = "black"
[tool.black]
line-length = 99
target-version = ['py38']
[tool.ruff]
line-length = 99
target-version = "py38"