forked from scikit-map/scikit-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (49 loc) · 1.39 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import setuptools
from skmap import __version__
from pathlib import Path
setuptools.setup(
name='scikit-map',
version=__version__,
description='scikit-learn applied to mapping and spatial prediction',
long_description="Python module to produce maps using machine learning, reference samples and raster data.",
long_description_content_type='text/markdown',
url='https://github.com/scikit-map/scikit-map',
packages=setuptools.find_packages(),
package_data={},
scripts=[],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
install_requires=[
'GDAL>=3.1',
'affine>=2.3',
'geopandas>=0.13',
'joblib>=1.1.0',
'numpy>=1.19',
'pyproj>=3.1',
'pandas>=2.0',
'requests>=2.24',
'scikit-learn>=1.0',
'rasterio>=1.1'
],
extras_require={
'full': [
'Bottleneck>=1.3',
'gspread>=5.3.2',
'matplotlib>=3.3',
'minio>=7.1.0',
'opencv-python>=4.5',
'pqdm>=0.1',
'pystac>=1.4.0',
'pyts>=0.11',
'pyFFTW>=0.13',
'scikit_image>=0.17',
'Shapely>=1.7',
'sentinelhub==3.4.4',
'whoosh>=2.7.4'
],
},
)