forked from cbick/osmviz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cbick#1 from bartvanandel/2to3
Add support for Python 3
- Loading branch information
Showing
2 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,33 @@ | |
|
||
setup( | ||
name='osmviz', | ||
version='1.0', | ||
version='1.0.1', | ||
description='OSMViz is a small set of Python tools for retrieving ' | ||
'and using Mapnik tiles from a Slippy Map server ' | ||
'(you may know these as OpenStreetMap images).', | ||
long_description=open('README.md', 'r').read(), | ||
packages=find_packages('src'), | ||
classifiers=[ | ||
# 'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Software Development :: Documentation'], | ||
keywords='osm openstreetmap tiles visualization', | ||
author='Colin Bick', | ||
author_email='[email protected]', | ||
url='http://cbick.github.com/osmviz', | ||
license='MIT', | ||
package_dir={'': 'src'}, | ||
zip_safe=False, | ||
packages=find_packages(where='src'), | ||
include_package_data=True, | ||
use_2to3=True, | ||
# osmviz actually only requires either PyGame or PIL, not necessarily both | ||
requires=( | ||
'PyGame', | ||
'PIL', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters