generated from fastai/nbdev_template
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
80 lines (69 loc) · 2.05 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "alphamap"
requires-python = ">=3.8.0"
dynamic = ["version", "dependencies", "optional-dependencies"]
authors = [
{name = "Isabell Bludau, Eugenia Voytik", email = "bludau@biochem.mpg.de"}
]
readme = "README.md"
keywords = [
"mass spectrometry",
"proteomics",
"search engine",
"DIA",
"data-independent acquisition",
"bioinformatics",
"AlphaPept",
"AlphaPept ecosystem",
]
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive"
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
"Paper preprint" = "https://www.biochem.mpg.de/mann"
Repository = "https://github.com/MannLabs/alphamap"
#Documentation = "https://readthedocs.org"
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
Issues = "https://github.com/MannLabs/alphamap/issues"
"Mann Labs Homepage" = "https://www.biochem.mpg.de/mann"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
# https://stackoverflow.com/a/73600610
dependencies = {file = ["requirements_loose.txt"]}
optional-dependencies = { stable = { file = ["requirements_stable.txt"] }}
version = {attr = "alphamap.__version__"}
[project.scripts]
alphamap = "alphamap.gui:run"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
"E501", # Line too long (ruff wraps code, but not docstrings)
"B028", # No explicit `stacklevel` keyword argument found (for warnings)
"B905" # This causes problems in numba code: `zip()` without an explicit `strict=` parameter
]