-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
executable file
·34 lines (33 loc) · 963 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
34
import setuptools
from setuptools import setup
setup(
name='ggtools',
version='1.1.7',
long_description_content_type='text/markdown',
description='A package to handle the GRACE and GRACE-FO GSM data and GLDAS grid data',
long_description=open('README.md', 'rb').read().decode('utf-8'),
license='MIT',
author='Chunxiao Li',
author_email='lcx366@126.com',
url='https://github.com/lcx366/GGTOOLS',
classifiers=[
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'scipy',
'numpy',
'matplotlib',
'pyshtools>=4.6.2',
'GPy',
'xarray',
'requests',
'astropy',
'sphericalpolygon',
'datetime'
],
)