-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
95 lines (84 loc) · 2.32 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
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hyperspy_gui_traitsui"
description = "traitsui GUI elements for the HyperSpy framework."
requires-python = ">=3.8"
readme = "README.md"
keywords=[
"data analysis",
"microscopy",
"traitsui",
"hyperspy",
"multi-dimensional",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
dependencies = [
"hyperspy>=2.1.0.dev119",
"link_traits",
"traits>=5.0",
"traitsui>=7.3",
]
dynamic = ["version"]
[project.entry-points."hyperspy.extensions"]
hyperspy_gui_traitsui = "hyperspy_gui_traitsui"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"pytest-rerunfailures",
"setuptools-scm",
]
dev = [
"black",
"hyperspy-gui-traitsui[doc]",
"hyperspy-gui-traitsui[tests]"
]
[project.urls]
"Homepage" = "https://github.com/hyperspy/hyperspy_gui_traitsui"
"Bug Reports" = "https://github.com/hyperspy/hyperspy_gui_traitsui/issues"
"Source" = "https://github.com/hyperspy/hyperspy_gui_traitsui"
"Conda-Forge" = "https://anaconda.org/conda-forge/hyperspy-gui-traitsui"
"Support" = "https://gitter.im/hyperspy/hyperspy"
[tool.coverage.run]
branch = true
source = ["hyperspy_gui_traitsui"]
omit = [
"hyperspy_gui_traitsui/tests/*",
"hyperspy_gui_traitsui/conftest.py",
"prepare_release.py",
]
[tool.coverage.report]
precision = 2
[tool.pytest.ini_options]
# "-ra", # Display summary: "all except passes"
addopts = "-ra"
minversion = "6.0"
testpaths = [
"hyperspy_gui_traitsui/tests",
]
[tool.setuptools.packages.find]
include = ["hyperspy_gui_traitsui*"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.setuptools_scm]
fallback_version = "2.0.2.dev0"