-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
33 lines (30 loc) · 964 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
requires = [
'gdal>=2.4',
'numpy',
'scikit-learn==0.21.3',
'pandas',
'scipy',
'netCDF4',
'pyproj'
]
setuptools.setup(
name = "SSGP-toolbox",
version = "1.0",
author = "Mikhail Sarafanov",
author_email = "mik_sar@mail.ru",
description = "Simple Spatial Gapfilling Processor. Toolbox for filling gaps in spatial datasets (e.g. remote sensing data)",
long_description = long_description,
keywords = 'machine learning, spatial data, gapfilling',
long_description_content_type = "text/markdown",
url = "https://github.com/Dreamlone/SSGP-toolbox",
install_requires = requires,
packages = setuptools.find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"License :: GNU General Public License v3.0",
"Operating System :: OS Independent",
],
)