forked from Coastal-Imaging-Research-Network/coastalimagelib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 782 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
from setuptools import setup
setup(
name="coastalimagelib",
version="1.1.0",
author="Maile P. McCann",
author_email="[email protected]",
url="https://github.com/mailemccann/coastalimagelib",
license="MIT",
packages=['coastalimagelib'],
description="Package for creating coastal image products.",
install_requires=['imageio',
'matplotlib',
'numpy',
'opencv-python',
'jupyter',
'ipykernel',
'scikit-image',
'scipy',
'scikit-image',
'scikit-learn',
'netCDF4',
'multiprocess',
'xarray',
]
)