-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (28 loc) · 1.02 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
from setuptools import setup
setup(
name='decorrelategrids',
version='0.1.0',
description=('Given two 2D arrays, perform a windowed regression between the two, '
+ 'aimed at isolating the correlated and the non-correlated components'),
url='https://github.com/apasto/decorrelate-grids',
author='Alberto Pastorutti, Marco Bartola',
author_email='alberto.pastorutti@gmail.com',
license='Apache-2.0',
packages=['decorrelategrids'],
entry_points={
'console_scripts': ['decorrelategrids=decorrelategrids.__init__:main'],
},
install_requires=['numpy',
'xarray',
'scipy',
'netcdf4',
'setuptools'
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering'
],
)