-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.29 KB
/
setup.py
File metadata and controls
47 lines (46 loc) · 1.29 KB
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
import setuptools
from pathlib import Path
setuptools.setup(
name='scikit-map',
version='0.7.3',
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/openlandmap/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.3.2',
'numpy>=1.19',
'pyproj>=3.1',
'pandas>=2.0',
'requests>=2.24',
'scikit-learn>=1.3',
'rasterio>=1.1'
],
extras_require={
'full': [
'Bottleneck>=1.3',
'gspread>=5.3.2',
'matplotlib>=3.7.3',
'minio>=7.1.0',
'pqdm>=0.1',
'pystac>=1.4.0',
'pyts>=0.11',
'pyfftw>=0.13',
'scikit_image>=0.20',
'Shapely>=1.7',
'whoosh>=2.7.4'
],
},
)