Skip to content

Commit f138815

Browse files
author
easz
committed
use console script
1 parent e3ceb97 commit f138815

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

scripts/__init__.py

Whitespace-only changes.
File renamed without changes.

setup.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,19 @@
66

77
setup(
88
name='wms-tile-get',
9-
version='0.2',
9+
version='0.3',
1010
packages=find_packages(exclude=["ez_setup", "example", "test"]),
11-
description='Fetch map tiles from WMS server and store them with WMTS convention',
11+
description='Fetch map from WMS server and store them as tiled web map with Slippy Map or or Google Map convention',
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url='https://github.com/easz/wms-tile-get',
1515
install_requires=[
1616
'requests', 'supermercado', 'mercantile'
1717
],
18-
scripts=['scripts/wms-tile-get'],
18+
entry_points={
19+
'console_scripts': [
20+
'wms-tile-get=scripts.wms_tile_get:main',
21+
],
22+
},
1923
license='MIT'
2024
)

0 commit comments

Comments
 (0)