-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.52 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
[project]
name = "quantms-utils"
dynamic = ["version"]
description = "Python scripts and helpers for the quantMS workflow"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Yasset Perez-Riverol", email = "ypriverol@gmail.com" },
{ name = "Dai Chengxin", email = "chengxin2024@126.com" },
{ name = "Julianus Pfeuffer", email = "jule.pf@gmail.com" }
]
keywords = [
"quantms",
"proteomics",
"mass-spectrometry",
"data-analysis",
"big data"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable"
]
dependencies = [
"click",
"sdrf-pipelines>=0.1.2",
"pyopenms>=3.3.0",
"pandas",
"pyarrow>=16.1.0",
"scipy",
]
[project.urls]
GitHub = "https://github.com/bigbio/quantms-utils"
PyPi = "https://pypi.org/project/quantms-utils/"
Quantms = "https://quantms.org"
LICENSE = "https://github.com/bigbio/quantms-utils/blob/main/LICENSE"
[project.scripts]
quantmsutilsc = "quantmsutils.quantmsutilsc:main"
[tool.isort]
profile = "black"
[tool.black]
line-length = 99
target-version = ["py39"]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.targets.wheel]
packages = ["quantmsutils"]