forked from MAVENSDC/PyTplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 835 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
#
#To upload the latest version, change "version=0.X.X+1" and type:
# python setup.py sdist upload
#
#
#
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pytplot',
version='1.2.7',
description='A python version of IDL tplot libraries',
url='http://github.com/MAVENSDC/Pytplot',
author='MAVEN SDC',
author_email='[email protected]',
license='MIT',
keywords='tplot maven lasp idl',
packages=['pytplot'],
install_requires=['bokeh==0.12.16',
'pyqtgraph',
'pandas',
'numpy',
'matplotlib',
'scipy',
'cdflib'],
include_package_data=True,
zip_safe=False)