-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (28 loc) · 926 Bytes
/
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
32
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
DISTNAME = 'xnemo'
PACKAGES = ['xnemo']
TESTS = [p + '.tests' for p in PACKAGES]
INSTALL_REQUIRES = ['numpy >= 1.7', 'scipy >= 0.18.0', 'xarray >= 0.8.2',
'dask >= 0.12.0']
TESTS_REQUIRE = ['pytest >= 2.7.1']
URL = 'http://github.com/serazing/xnemo'
AUTHOR = 'Guillaume Serazin'
AUTHOR_EMAIL = 'guillaume.serazin@legos.obs-mip.fr'
LICENSE = 'Apache'
DESCRIPTION = 'xarray interface for NEMO simulations'
VERSION = 0.1
setup(name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
keywords='ocean modelling',
packages=PACKAGES + TESTS,
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
install_requires=INSTALL_REQUIRES,
zip_safe=False)