Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelonGonzalez committed Mar 3, 2022
1 parent 5361209 commit c7aab8e
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,29 @@
setup(

name="dinsar",
version="0.1",
version="0.0.1",
author="Miguel González Jiménez",
author_email="miguigonn@gmail.com",
description="Python package for analyzing D-InSAR time series.",
description="Python package for analyzing DInSAR time series.",
long_description=long_description,
#license="",
#package_dir={"": "src"},
license="GNU GENERAL PUBLIC LICENSE Version 3",
url="https://github.com/MiguelonGonzalez/dinsar/tutorials",
install_requires=[
"geopandas>=0.10.2",
'pandas>=1.3.2',
'matplotlib>=3.4.2',
'folium'
],
package_dir={"": "dinsar"},
packages=find_packages(where="dinsar")
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'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'
],
package_dir={"": "dinsar"},
python_requires=">=3.8",
packages=find_packages(where="dinsar")

)

0 comments on commit c7aab8e

Please sign in to comment.