forked from lroineau/gnssr4river
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1.14 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
# setup.py
# This file is part of gnssr4water.
# Author Roelof Rietbroek ([email protected]), 2022
# Author Lubin Roineau ([email protected]), 2022
import setuptools
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gnssr4water",
author="Roelof Rietbroek",
author_email="[email protected]",
version="1.0",
description="Python library to help perform gnss reflectometry for water applications",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ITC-Water-Resources/gnssr4water",
packages=find_packages("."),
package_dir={"":"."},
install_requires=['numpy','pandas','shapely','matplotlib','astropy','geopandas','pathlib','GDAL','Shapely','cartopy'],
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Development Status :: Beta"]
)