forked from erdc/RAPIDpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.65 KB
/
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
from setuptools import setup, find_packages
setup(
name='RAPIDpy',
version='2.3.5',
description='Python interface for RAPID (rapid-hub.org)',
long_description='RAPIDpy is a python interface for RAPID that assists to prepare inputs, runs the RAPID program,'
' and provides post-processing utilities (https://github.com/erdc-cm/RAPIDpy). More information '
'about installation and the input parameters for RAPID can be found at http://rapid-hub.org. The'
' source code for RAPID is located at https://github.com/c-h-david/rapid/. \n\n'
'.. image:: https://zenodo.org/badge/19918/erdc-cm/RAPIDpy.svg \n'
' :target: https://zenodo.org/badge/latestdoi/19918/erdc-cm/RAPIDpy',
keywords='RAPID',
author='Alan Dee Snow',
author_email='[email protected]',
url='https://github.com/erdc-cm/RAPIDpy',
download_url='https://github.com/erdc-cm/RAPIDpy/archive/2.3.5.tar.gz',
license='BSD 3-Clause',
packages=find_packages(),
package_data={'': ['gis/lsm_grids/*.nc']},
install_requires=['future', 'numpy', 'netCDF4', 'python-dateutil', 'pytz', 'requests'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)