-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 905 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
37
38
39
40
41
42
43
44
45
46
47
"""Set-up routines for reanalysis DBNs study code."""
from setuptools import setup, find_packages
install_requires = [
'arviz',
'dask',
'joblib',
'loky',
'netCDF4',
'numpy',
'pandas',
'patsy',
'pystan',
'regionmask',
'scikit-learn',
'scipy',
'statsmodels',
'xarray',
]
setup_requires = [
'pytest-runner',
]
tests_require = [
'pytest',
'pytest-cov',
'pytest-flake8',
]
setup(
name='reanalysis_dbns',
version='0.1.0',
author='Dylan Harries',
author_email='[email protected]',
description='Code accompanying DBN study of reanalyses',
long_description='',
include_package_data=True,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
packages=find_packages('src'),
package_dir={'': 'src'},
test_suite='tests',
zip_safe=False
)