-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py-bak
44 lines (41 loc) · 972 Bytes
/
setup.py-bak
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
from setuptools import setup, find_packages
from satio_pc import __version__
tests_require = [
'pytest>=4.5.0',
'mock'
]
version = f"{__version__}"
setup(
name="satio_pc",
version=version,
author="Daniele Zanaga",
author_email="[email protected]",
description=("Utilities for loading and processing of satellite data"),
url='',
license="Property of VITO NV",
# adding packages
packages=find_packages(include=['satio_pc*']),
setup_requires=['pytest-runner'],
tests_require=tests_require,
package_data={
'': ['layers/*'],
},
zip_safe=True,
install_requires=[
'boto3',
'dask',
'dask_image',
'geopandas',
'h5netcdf',
'importlib-resources',
'loguru',
'rasterio',
'rio-cogeo',
'shapely',
'tqdm',
],
entry_points={
"console_scripts": [
"ewc = satio_pc.cli:ewc_cli",
]}
)