-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (44 loc) · 1.08 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import re
from setuptools import setup, find_packages
def readme():
"""Return the contents of the project README file."""
with open('README.md') as f:
return f.read()
version = re.search(r"__version__ = ['\"]([^'\"]*)['\"]", open('basd/__init__.py').read(), re.M).group(1)
setup(
name='basd',
version=version,
packages=find_packages(),
url='https://github.com/JGCRI/basd',
license='BSD-2-Clause',
author='Noah Prime',
author_email='[email protected]',
description='',
long_description=readme(),
long_description_content_type="text/markdown",
#python_requires='>=3.6.*, <4',
include_package_data=True,
install_requires=[
"dask[complete]",
"intake",
"joblib",
"matplotlib!=3.6.1,>=3.1",
"numpy",
"netCDF4",
"pandas",
"plotly",
"PyYAML",
"rasterio",
"rioxarray",
"scipy[complete]",
"seaborn",
"xarray",
"zarr"
],
extras_require={
'dev': [
"plotly",
"xesmf"
]
}
)