-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
36 lines (34 loc) · 885 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
34
35
36
from setuptools import setup, find_packages
setup(
name='cosima_cookbook',
description='Diagnostics for COSIMA: Consortium for Ocean-Sea Ice Modelling in Australia',
url='https://github.com/COSIMA/cosima-cookbook',
author='COSIMA',
license='Apache License 2.0',
use_scm_version=True,
packages=find_packages(),
setup_requires=["setuptools_scm"],
install_requires=[
'dask',
'xarray',
'numpy',
'matplotlib',
'bokeh',
'netcdf4',
'tqdm',
'sqlalchemy<2.0',
'cftime',
'f90nml',
'joblib',
'ipywidgets',
'lxml',
],
entry_points={
'console_scripts': [
'cosima_cookbook-update_db = cosima_cookbook.database_update:main',
]
},
extras_require = {
'build': ['distributed', 'pytest', 'pytest-cov']
}
)