-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (55 loc) · 1.28 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
[project]
name='mzspeclib'
version='1.1.0'
description='HUPO-PSI Spectral library format'
keywords = [
"mass spectrometry",
"spectral library",
]
license.file = "docs/LICENSE.txt"
requires-python = ">= 3.8"
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 3 - Alpha"
]
dependencies = [
"sqlalchemy",
"click",
"psims >= 1.3.4",
"pyteomics >= 4.5.3",
"mzpaf"
]
authors = [
{ name = "Joshua Klein", email="[email protected]" },
{ name = "Ralf Gabriels", email="[email protected]" },
{ name = "Eric W Deutsch", email="[email protected]" }
]
readme = "README.md"
[project.optional-dependencies]
test = [
"jsonschema"
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"numpydoc>=1,<2",
"sphinx_click",
"myst-parser",
"sphinx-autobuild",
]
[project.scripts]
mzspeclib = "mzspeclib.tools.cli:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.ruff]
target-version = "py38"
line-length = 120
select = ["D"]
ignore = ["D415", "D400", "D212", "D205", "D203", "D105"]
[tool.ruff.pydocstyle]
convention = "numpy"