-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
25 lines (24 loc) · 1.22 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
from setuptools import setup, find_packages
setup(name='obsio',
version='0.1',
packages=find_packages(),
description='Climate and weather observation IO',
long_description=('obsio is Python package that provides a consistent generic '
'interface for accessing weather and climate observations '
'from multiple different data providers.'),
author='Jared W. Oyler',
author_email='[email protected]',
license='GPL',
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: GNU General Public License',
'Programming Language :: Python :: 3'],
install_requires=['lxml', 'netCDF4', 'numpy', 'pandas', 'pycurl', 'pytz',
'scipy', 'shapely', 'suds-py3', 'tzwhere', 'xarray'],
python_requires='>=3',
package_data={'obsio.providers': ['data/*']}
)