forked from mjucker/aostools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 752 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 752 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
#from distutils.core import setup
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__),fname)).read()
setup(name='aostools',
version='2.2',
description='Helper functions for scientific postprocessing and analysis of netCDF data',
long_description=read('readme_pypi'),
keywords='atmospheric oceanic science netcdf analysis tools',
author='Martin Jucker',
author_email='coding@martinjucker.com',
license='GPLv3',
url='https://github.com/mjucker/aostools',
package_dir={'aostools': ''},
packages=['aostools'],
install_requires=[
'numpy',
'netCDF4',
'xarray>=0.11.0',
'scipy',
'cartopy',
],
zip_safe=False
)