-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.71 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mantis-xray"
authors = [
{name = "Mirna Lerotic", email = "mirna@2ndlookconsulting.com"},
]
description = "MANTiS is a Multivariate ANalysis Tool for x-ray Spectromicroscopy"
readme = "README.md"
requires-python = ">=3"
keywords = ["spectromicroscopy", "microspectroscopy", "stxm", "hyperspectral", "imaging", "image"]
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Science/Research"
]
dependencies = [
'PyQt5>=5.15.9',
'numpy',
'scipy>=1.11.4',
'matplotlib>=3.6.0',
'h5py',
'Pillow',
'lxml',
'pyqtgraph>=0.13.7',
"scikit-image>=0.19.1",
"xdrlib3"
]
dynamic = ["version"]
[project.urls]
homepage = "https://spectromicroscopy.com"
documentation = "https://docs.spectromicroscopy.com"
source = "https://github.com/mlerotic/spectromicroscopy"
issues = "https://github.com/mlerotic/spectromicroscopy/issues"
[project.optional-dependencies]
netCDF = ["netCDF4"]
[project.gui-scripts]
mantis-xray = "mantis_xray.mantis_qt:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["mantis_xray*"]
[tool.setuptools.package-data]
"mantis_xray" = ["*.qss", "Mantis_batch_settings.txt", "images/*"]
"mantis_xray.analysis" = ["*.xdr"]
"mantis_xray.gui.dialogs" = ["*.ui"]
"mantis_xray.gui.pages" = ["*.ui"]
[tool.setuptools.dynamic]
version = {attr = "mantis_xray.__version__"}