forked from bishun945/pyOWT
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 724 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 724 Bytes
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
import pyowt
setup(
name=pyowt.__package__,
version=pyowt.__version__,
author='Shun Bi',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'scipy',
'PyYAML',
'netCDF4',
'xarray',
'matplotlib'
],
extras_require={
'geeowt': [
'geemap',
'earthengine-api'
],
'satellite_handlers': [
'osgeo',
'lxml'
]
},
include_package_data=True,
package_data={
'pyowt': ['data/*']
},
license_files=('LICENSE')
)
# Please use the command to install the package in terminal
# pip install -e .