-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (39 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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
import setuptools
import os
setuptools.setup(
name='terrainy',
version='0.0.5',
description='Auto-downloader for global terrain data and satellite imagery',
long_description="""Library to download a raster of
global height data such as a DTM, or satellite imagery for a polygon.""",
long_description_content_type="text/markdown",
author='Ed Harrison',
author_email='[email protected]',
url='https://github.com/emerald-geomodelling/terrainy',
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'terrainy': ['*/*.geojson']},
install_requires=[
"rasterio",
"geopandas",
"shapely",
"fiona",
"owslib",
"numpy",
"rtree",
"contextily",
"xyzservices",
"click"
],
entry_points={
'terrainy.connection': [
'wcs = terrainy.connection_wcs:WcsConnection',
'wms = terrainy.connection_wms:WmsConnection',
'tile = terrainy.connection_tile:TileConnection',
],
'console_scripts': [
'terrainy = terrainy.cmd:main',
],
},
)