forked from cgre-aachen/gemgis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1.27 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
from setuptools import setup, find_packages
from os import path
version = '1.0.0'
# Loading Readme for Description on PyPi
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gemgis',
version=version,
packages=find_packages(exclude=('test', 'data', 'notebooks')),
include_package_data=True,
install_requires=[],
url='https://github.com/cgre-aachen/gemgis',
license='LGPL v3',
author='Alexander Jüstel, Arthur Endlein Correia, Florian Wellmann, Marius Pischke',
author_email='[email protected]',
description="""GemGIS is a Python-based, open-source spatial data processing library.
It is capable of preprocessing spatial data such as vector data
raster data, data obtained from online services and many more data formats.
GemGIS wraps and extends the functionality of packages known to the geo-community
such as GeoPandas, Rasterio, OWSLib, Shapely, PyVista, Pandas, and NumPy.""",
keywords=['geology', 'geographic', 'structural geology', 'GIS', 'spatial data'],
long_description=long_description,
long_description_content_type='text/markdown'
)