Skip to content

Commit eebaf33

Browse files
author
Matt Le
committed
change download_url to point to tags
1 parent 2b7eafe commit eebaf33

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
from setuptools import setup
22

3+
version = "0.5"
4+
35
setup(
46
name='geoiojpg',
57
packages=['geoiojpg'],
6-
version='0.2',
8+
version=version,
79
description='A wrapper around GeoIO for non-georeferenced jpg files',
810
author='Matt Le',
911
author_email='lematt1991@gmail.com',
1012
url='https://github.com/ArnholdInstitute/geoiojpg',
11-
download_url='https://github.com/ArnholdInstitute/geoiojpg/archive/master.zip',
13+
download_url='https://github.com/ArnholdInstitute/geoiojpg/archive/{0}.tar.gz'.format(version),
1214
keywords=['jpg', 'jpeg', 'geoio', 'geospatial'],
1315
classifiers=[],
1416
install_requires=['geoio', 'shapely']

0 commit comments

Comments
 (0)