-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
36 lines (35 loc) · 1.16 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
from setuptools import setup, find_packages
setup(
name='s1denoise',
version='1.4.0',
description='Thermal noise correction of Sentinel-1 TOPS GRDM EW products ',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Utilities'
],
keywords='thermal noise correction sentinel',
author='Jeong-Won Park, Anton Korosov',
author_email='[email protected], [email protected]',
packages=find_packages(),
scripts=[
's1denoise/scripts/s1_correction.py',
],
package_data={'s1denoise' :['denoising_parameters.json']},
install_requires=[
'beautifulsoup4',
'gdal',
'lxml',
'numpy',
'requests',
'scipy',
],
include_package_data=True,
zip_safe=False)