forked from xarray-contrib/xarray-simlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (29 loc) · 897 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
33
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import exists
import versioneer
setup(
name="xarray-simlab",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=(
"generic framework and xarray extension " "for computer model simulations"
),
url="http://github.com/xarray-contrib/xarray-simlab",
maintainer="Benoit Bovy",
maintainer_email="[email protected]",
license="BSD-Clause3",
keywords="python xarray modelling simulation framework",
packages=find_packages(),
long_description=(open("README.rst").read() if exists("README.rst") else ""),
python_requires=">=3.5",
install_requires=[
"attrs >= 18.1.0",
"dask",
"numpy",
"xarray >= 0.10.0",
"zarr >= 2.3.0",
],
tests_require=["pytest >= 3.3.0"],
zip_safe=False,
)