-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 744 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 744 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
#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.7',
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=[
'netCDF4',
'scipy',
'xarray>=0.11.0',
],
zip_safe=False
)