|
1 | 1 | from setuptools import setup, find_packages
|
2 | 2 |
|
3 |
| -__version__ = '1.0.0' |
| 3 | +__version__ = '1.0.1' |
4 | 4 |
|
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 |
| - |
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 | + |
| 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