forked from tgwoodcock/hdf5view
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·47 lines (43 loc) · 1.24 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from hdf5view import __version__
setup(
name='hdf5view',
version=__version__,
description='HDF5 file viewer',
long_description='HDF5View is a python based HDF5 file viewer built on PySide2/PyQt5, h5py and pyqtgraph.',
license='MIT',
url='https://github.com/marts/hdf5view/',
author='Martin Swarbrick',
author_email='[email protected]',
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 :: MIT',
'Operating System :: POSIX',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Visualization',
],
keywords='',
packages=find_packages('.'),
install_requires=[
'h5py',
'PyQt6'
],
zip_safe=False,
include_package_data=True,
package_data={
'hdf5view': [
'resources'
]
},
entry_points={
'gui_scripts': [
'hdf5view=hdf5view.main:main',
],
},
)