-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.23 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
[project]
name = "xlsxreport"
description = "Automated generation of formatted excel reports from MS results"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "David M. Hollenstein", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = ["mass spectrometry", "proteomics", "report", "excel"]
requires-python = ">= 3.9"
dependencies = [
"cerberus >= 1.3.5",
"click >= 8.0.4",
"numpy >= 1.21.5",
"pandas >= 1.4.4",
"platformdirs >= 3",
"pyyaml >= 6.0",
"xlsxwriter >= 3.1.2",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = ["pytest >= 7.1.2", "openpyxl >= 3.0.10"]
dev = ["nox", "pytest >= 7.1.2", "openpyxl >= 3.0.10"]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
xlsxreport = ["default_templates/*.yaml"]
[tool.setuptools.dynamic]
version = { attr = "xlsxreport.__version__" }
[project.scripts]
xlsxreport = "xlsxreport.scripts.cli:cli"
[tool.pytest.ini_options]
testpaths = ["tests"]