-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
30 lines (29 loc) · 896 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
from setuptools import setup, find_packages
setup(
name='stsa',
author='Panji P. Brotoisworo',
url='https://github.com/pbrotoisworo/s1-tops-split-analyzer',
version=0.2,
description='Interface to extract subswath data from Sentinel-1 SAR metadata',
packages=find_packages(),
include_package_data=True,
install_requires=[
'descartes',
'fiona',
'geopandas',
'folium',
'xmltodict',
'streamlit',
'streamlit-folium',
'pytest'
],
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="SAR, Sentinel-1, Remote Sensing",
)