-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (61 loc) · 1.58 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
[project]
name='mzspeclib'
version='1.0.4'
description='HUPO-PSI Spectral library format'
keywords = [
"mass spectrometry",
"spectral library",
]
license.file = "LICENSE"
requires-python = ">= 3.8"
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
]
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.urls]
Homepage = "https://hupo-psi.github.io/mzSpecLib/"
Repository = "https://github.com/HUPO-PSI/mzspeclib-py.git"
Documentation = "https://mzspeclib-py.readthedocs.io/en/latest/"
Issues = "https://github.com/HUPO-PSI/mzspeclib-py/issues"
[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"