Skip to content

Commit 59ead2b

Browse files
committed
setup update with license
1 parent 5342fe7 commit 59ead2b

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

setup.py

+16-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
from setuptools import setup, find_packages
22

3-
__version__ = '1.0.0'
3+
__version__ = '1.0.1'
44

5-
setup(name='s2cloudless',
6-
version=__version__,
7-
description='Sentinel Hub\'s cloud detector for Sentinel-2 imagery',
8-
url='https://github.com/sentinel-hub/sentinel2-cloud-detector',
9-
author='Anze Zupanc',
10-
author_email='[email protected]',
11-
packages=find_packages('.'),
12-
package_dir={'':'.'},
13-
package_data={'s2cloudless': ['models/pixel_s2_cloud_detector_lightGBM_v0.1.joblib.dat',
14-
'TestInputs/input_arrays.npz']},
15-
install_requires=['numpy', 'scipy', 'scikit-learn', 'scikit-image', 'matplotlib', 'lightgbm'],
16-
zip_safe=False)
5+
setup(
6+
name='s2cloudless',
7+
version=__version__,
8+
description='Sentinel Hub\'s cloud detector for Sentinel-2 imagery',
9+
url='https://github.com/sentinel-hub/sentinel2-cloud-detector',
10+
author='Anze Zupanc',
11+
author_email='[email protected]',
12+
license='CC-BY-SA-4.0',
13+
packages=find_packages('.'),
14+
package_dir={'': '.'},
15+
package_data={'s2cloudless': ['models/pixel_s2_cloud_detector_lightGBM_v0.1.joblib.dat',
16+
'TestInputs/input_arrays.npz']},
17+
install_requires=['numpy', 'scipy', 'scikit-learn', 'scikit-image', 'matplotlib', 'lightgbm'],
18+
zip_safe=False
19+
)

0 commit comments

Comments
 (0)