forked from strawpants/geoslurp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (39 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
# setup.py
# This file is part of geoslurp.
# geoslurp is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3 of the License, or (at your option) any later version.
# geoslurp is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with Frommle; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# Author Roelof Rietbroek ([email protected]), 2020
import setuptools
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="geoslurp",
author="Roelof Rietbroek",
author_email="[email protected]",
version="2.2.1",
description="Python postgreSQL-PostGIS client for managing earth science datasets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/strawpants/geoslurp",
packages=find_packages("."),
package_dir={"":"."},
scripts=['clitools/geoslurper.py'],
install_requires=['numpy','SQLAlchemy','pycurl','cryptography','PyYAML','lxml','keyring','pandas','motuclient','netCDF4','GDAL','Shapely','GeoAlchemy2','psycopg2'],
extras_require={"SH":["pyshtools"]},
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 :: 4 - Beta"]
)