-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·31 lines (24 loc) · 1.04 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Setup function
setup(
name = 'efa_xray',
version = '0.5',
description = """A simple EnKF implementation for Ensemble Forecast Adjustment
(EFA; Madaus and Hakim 2015) using the python-xray
library as an ensemble state container """,
author = 'Luke Madaus',
author_email= '[email protected]',
license = 'MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Ensemble Forecasting :: Kalman Filter',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
packages = find_packages(exclude['contrib', 'docs', 'tests*']),
install_requres = ['xarray','numpy','matplotlib','pandas','dask'],
)