-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.24 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ms-mint"
description = "Python library for large-scale targeted metabolomics."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "Soren Wacker", email = "swacker@ucalgary.ca"}
]
urls = { "Homepage" = "https://github.com/LewisResearchGroup/ms-mint" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"six",
"jsonschema",
"entrypoints",
"pygments",
"pexpect",
"decorator",
"pillow",
"lxml",
"pandas",
"matplotlib",
"seaborn",
"pyteomics",
"scikit-learn",
"molmass",
"pymzml",
"plotly",
"colorlover",
"tqdm",
"ipywidgets",
"ipyfilechooser",
"openpyxl",
"pyarrow",
"tables",
"h5py",
"hdf5plugin"
]
dynamic = ["version"]
[project.scripts]
ms-mint-convert = "ms_mint.scripts.ms_mint_convert:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["ms_mint*"]
[tool.setuptools_scm]
write_to = "src/ms_mint/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"
[tool.pytest]
addopts = "--maxfail=1 --disable-warnings"
testpaths = ["tests"]