-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (61 loc) · 1.73 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
[build-system]
requires = ["setuptools>=45,<72", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ms-mint-app"
description = "Metabolomics Integrator Interactive Web-Application (Mint)"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Soren Wacker", email = "swacker@ucalgary.ca"}
]
maintainers = [
{name = "Soren Wacker", email = "swacker@ucalgary.ca"}
]
keywords = ["metabolomics", "integrator", "mint"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"ms-mint>=1.0.0",
"xlsxwriter",
"waitress",
"dash",
"dash[diskcache]",
"dash_extensions",
"dash_bootstrap_components",
"flask_login",
"flask_migrate",
"flask_wtf",
"urllib3",
"dash_tabulator",
"dash_uploader==0.7.0a1",
"beautifulsoup4",
"dask[diskcache]",
"h5py",
"hdf5plugin",
"werkzeug==3.0.6",
"packaging==21.3.0"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/LewisResearchGroup/ms-mint-app"
Documentation = "https://lewisresearchgroup.github.io/ms-mint-app/"
Repository = "https://github.com/LewisResearchGroup/ms-mint-app.git"
"Bug Tracker" = "https://github.com/LewisResearchGroup/ms-mint-app/issues"
[tool.setuptools_scm]
write_to = "src/ms_mint_app/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"
[project.scripts]
Mint = "ms_mint_app.scripts.Mint:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["ms_mint_app*"]