-
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reformatting and correctly routing xml responseformat
- Loading branch information
Showing
9 changed files
with
71 additions
and
79 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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,27 +1,25 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name='overpass', | ||
packages=['overpass'], | ||
version='0.6.0', | ||
description='Python wrapper for the OpenStreetMap Overpass API', | ||
long_description='See README.md', | ||
author='Martijn van Exel', | ||
author_email='m@rtijn.org', | ||
url='https://github.com/mvexel/overpass-api-python-wrapper', | ||
license='Apache', | ||
keywords=['openstreetmap', 'overpass', 'wrapper'], | ||
name="overpass", | ||
packages=["overpass"], | ||
version="0.6.0", | ||
description="Python wrapper for the OpenStreetMap Overpass API", | ||
long_description="See README.md", | ||
author="Martijn van Exel", | ||
author_email="m@rtijn.org", | ||
url="https://github.com/mvexel/overpass-api-python-wrapper", | ||
license="Apache", | ||
keywords=["openstreetmap", "overpass", "wrapper"], | ||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Topic :: Scientific/Engineering :: GIS', | ||
'Topic :: Utilities', | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3.3", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Topic :: Scientific/Engineering :: GIS", | ||
"Topic :: Utilities", | ||
], | ||
install_requires=['requests>=2.3.0', 'geojson>=1.0.9'], | ||
extras_require={ | ||
'test': ['pytest'], | ||
} | ||
install_requires=["requests>=2.3.0", "geojson>=1.0.9"], | ||
extras_require={"test": ["pytest"]}, | ||
) |
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