Skip to content

Commit 1c42a40

Browse files
author
Jeff Whitaker
committed
Merge pull request #2 from matplotlib/master
merge changes from master
2 parents 50f5de0 + 18e789f commit 1c42a40

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,17 +109,18 @@ def checkversion(GEOS_dir):
109109
datafiles = [os.path.join('data',os.path.basename(f)) for f in datafiles]
110110
package_data = {'mpl_toolkits.basemap':datafiles}
111111

112+
__version__ = "1.0.8"
112113
setup(
113114
name = "basemap",
114-
version = "1.0.8",
115+
version = __version__,
115116
description = "Plot data on map projections with matplotlib",
116117
long_description = """
117118
An add-on toolkit for matplotlib that lets you plot data
118119
on map projections with coastlines, lakes, rivers and political boundaries.
119120
See http://www.scipy.org/wikis/topical_software/Maps for an
120121
example of what it can do.""",
121122
url = "http://matplotlib.sourceforge.net/toolkits.html",
122-
download_url = "http://sourceforge.net/projects/matplotlib",
123+
download_url = "https://downloads.sourceforge.net/project/matplotlib/matplotlib-toolkits/basemap-{0}/basemap-{0}.tar.gz".format(__version__),
123124
author = "Jeff Whitaker",
124125
author_email = "[email protected]",
125126
platforms = ["any"],

0 commit comments

Comments
 (0)