forked from hapi-server/client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 845 Bytes
/
setup.py
File metadata and controls
32 lines (25 loc) · 845 Bytes
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
import sys
install_requires = ["numpy>=1.14.3",
"pandas>=0.23.*",
"isodate>=0.6.0"]
if sys.version_info > (3, 5):
install_requires.append('matplotlib>=2.2.2')
else:
install_requires.append('matplotlib==2.*')
if sys.argv[1] == 'develop':
install_requires.append("deepdiff<3.3.0")
install_requires.append("pytest")
# version is modified by misc/version.py (executed from Makefile). Do not edit.
setup(
name='hapiclient',
version='0.1.3b',
author='Bob Weigel',
author_email='rweigel@gmu.edu',
packages=find_packages(),
url='http://pypi.python.org/pypi/hapiclient/',
license='LICENSE.txt',
description='Heliophysics API',
long_description=open('README.rst').read(),
install_requires=install_requires
)