-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
56 lines (48 loc) · 1.51 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hdf5view"
description = 'HDF5View is a python based HDF5 file viewer built on PyQt5/PySide2/PyQt6/PySide6, QtPy, h5py and pyqtgraph.'
authors = [
{name = "Martin Swarbrick"},
{name = "Thomas G. Woodcock"},
]
maintainers = [{name = "Thomas G. Woodcock"},]
license = {file = "LICENSE"}
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Visualization',
]
keywords = ["research", "data", "management", "visualization", "hdf5", "viewer"]
requires-python = ">=3.6"
dependencies = [
"h5py",
"qtpy",
"psutil",
"pyqtgraph"
]
dynamic = ["version"]
[project.readme]
'file' = "README.md"
'content-type' = "text/markdown"
[project.urls]
'Source' = 'https://github.com/marts/hdf5view/'
'Bug Tracker' = 'https://github.com/marts/hdf5view/issues'
[project.gui-scripts]
hdf5view = "hdf5view.main:main"
[tool.setuptools.dynamic]
version = {attr = "hdf5view.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"hdf5view.resources.images" = ["*.svg", "*.ico"]