-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (98 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
113 lines (98 loc) · 2.08 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[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",
"openpyxl",
"pyarrow",
"tables",
"h5py",
"hdf5plugin",
]
dynamic = ["version"]
[project.optional-dependencies]
gui = [
"solara>=1.30.0",
"anywidget>=0.9.0",
"ipyvuetify>=1.11.3",
]
docs = [
"mkdocs==1.6.1",
"mkdocs-material==9.6.12",
"mkdocstrings==0.26.1",
"mkdocstrings-python==1.11.1",
"mkdocs-autorefs==1.2.0",
]
dev = [
"pytest",
"numpy",
"flake8"
]
[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.ini_options]
addopts = ["--maxfail=1", "--disable-warnings"]
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"N", # pep8-naming
"D", # pydocstyle
"ANN", # flake8-annotations (type hints)
]
ignore = [
"D203", # one-blank-line-before-class
"D213", # multi-line-summary-second-line
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
known-first-party = ["ms_mint"]