-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (27 loc) · 855 Bytes
/
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
from setuptools import setup, find_packages
version = '0.1.4'
setup(name='qtplot',
version=version,
description='Data plotting and analysis tool',
url='https://github.com/Rubenknex/qtplot',
author='Ruben van Gulik',
author_email='[email protected]',
license='MIT',
packages=['qtplot',
'tests',
'qtplot/colormaps',
'qtplot/colormaps/nanoscope',
'qtplot/colormaps/transform',
'qtplot/colormaps/wsxm'],
install_requires=[
'QtPy',
'pyopengl',
'vispy==0.4.0',
],
package_data={
'': ['*.npy']
},
entry_points={
'console_scripts': ['qtplot-console-%s = qtplot.qtplot:main' % version],
'gui_scripts': ['qtplot-%s = qtplot.qtplot:main' % version]
})