-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.28 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="wasar",
version="0.0.4",
author="Miguel González Jiménez & Carolina Guardiola Albert",
author_email="miguigonn@gmail.com, c.guardiola@igme.es",
description="Python package for analyzing A-DInSAR time series.",
long_description=long_description,
long_description_content_type='text/markdown',
license="GNU GENERAL PUBLIC LICENSE Version 3",
url="https://github.com/MiguelonGonzalez/wasar",
install_requires=[
"geopandas>=0.10.2",
'pandas>=1.3.2',
'matplotlib>=3.4.2',
'folium'
],
include_package_data=True,
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows',
'Natural Language :: Spanish',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Hydrology'
]
)