-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8c360b
commit e4cb3f2
Showing
3 changed files
with
10 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ UrbanPy lets you download and visualize city boundaries extremely easy: | |
```python | ||
import urbanpy as up | ||
|
||
boundaries = up.download.nominatim_osm('Lima, Peru', expected_position=2) | ||
boundaries = up.download.nominatim_osm('Lima, Peru', expected_position=2, email="[email protected]") | ||
boundaries.plot() | ||
``` | ||
|
||
|
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 |
---|---|---|
|
@@ -6,9 +6,12 @@ | |
with open("requirements.txt", "r") as f: | ||
install_requires = f.read().split("\n")[:-1] | ||
|
||
# Set a development version for source installs | ||
__version__ = "dev" | ||
|
||
setuptools.setup( | ||
name="urbanpy", | ||
version="__version__", # This will be replaced with the commit tag | ||
version=__version__, # This will be replaced with the commit tag | ||
author="Andres Regal, Claudio Ortega & Antonio Vazquez Brust", | ||
author_email="[email protected]", | ||
description="A library to download, process and visualize high resolution urban data.", | ||
|