-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (27 loc) · 803 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
30
31
32
33
from setuptools import setup
DESCRIPTION = """
GLPlotLib is a thin wrapper around PyQtGraph with Matplotlib style API.
GLPlotLib launches 3D OpenGL visualizations of PyQtGraph in a separate thread, allowing
it to be used in a interactive python shell, without blocking the main thread.
"""
setupOpts = dict(
name='glplotlib',
description='a thin wrapper around PyQtGraph with Matplotlib style API',
long_description=DESCRIPTION,
license='MIT',
url='https://github.com/chichengumich/glplotlib',
author='Cheng Chi',
author_email='chicheng@umich.edu',
)
setup(
version='0.1.1',
packages=['glplotlib'],
include_package_data=True,
install_requires=[
"numpy",
"pyopengl",
"pyqt5==5.10.1",
"pyqtgraph"
],
**setupOpts
)