Skip to content

Commit

Permalink
small changes in naming
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed Dec 31, 2019
1 parent 41ddc7a commit 6e6d0ea
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Worldmap
[![PyPI Version](https://img.shields.io/pypi/v/worldmap)](https://pypi.org/project/worldmap/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/erdoganta/worldmap/blob/master/LICENSE)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/erdogant/worldmap/blob/master/LICENSE)

This package enables to color the worldmap of different regions in countries using svg images.

Expand All @@ -22,7 +22,7 @@ pip install worldmap
* Alternatively, install worldmap from the GitHub source:

```bash
git clone https://github.com/erdoganta/worldmap.git
git clone https://github.com/erdogant/worldmap.git
cd worldmap
python setup.py install
```
Expand All @@ -42,7 +42,7 @@ cmap = ['#ff0000'] # Different red accents
out = worldmap.colormap(names,opacity=opacity, cmap='Set1', loadmap='netherlands', filename='nederlandMap.svg')
```
<p align="center">
<img src="https://github.com/erdoganta/worldmap/blob/master/docs/figs/figure_netherlands.png" width="300" />
<img src="https://github.com/erdogant/worldmap/blob/master/docs/figs/figure_netherlands.png" width="300" />
</p>


Expand All @@ -55,7 +55,7 @@ opacity = [100]
out = worldmap.colormap(names, opacity=opacity, loadmap='world')
```
<p align="center">
<img src="https://github.com/erdoganta/worldmap/blob/master/docs/figs/worldmap.png" width="300" />
<img src="https://github.com/erdogant/worldmap/blob/master/docs/figs/worldmap.png" width="300" />
</p>


Expand All @@ -81,14 +81,14 @@ regions_BE = worldmap.getmapnames(loadmap='belgium')
## Citation
Please cite worldmap in your publications if this is useful for your research. Here is an example BibTeX entry:
```BibTeX
@misc{erdoganta2019worldmap,
@misc{erdogant2019worldmap,
title={worldmap},
author={Erdogan Taskesen},
year={2019},
howpublished={\url{https://github.com/erdoganta/worldmap}},
howpublished={\url{https://github.com/erdogant/worldmap}},
}
```

## Maintainers
* Erdogan Taskesen, github: [erdoganta](https://github.com/erdoganta)
* Erdogan Taskesen, github: [erdogant](https://github.com/erdogant)
See [LICENSE](LICENSE) for details.
2 changes: 1 addition & 1 deletion make_new_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ echo
python setup.py sdist
echo ""
read -p "Press [Enter] to install the pip package..."
pip install -U dist/worldmap-0.1.0-py3-none-any.whl
pip install -U dist/worldmap-0.1.2-py3-none-any.whl
echo ""
read -p ">twine upload dist/* TO UPLOAD TO PYPI..."
echo ""
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import setuptools
import versioneer
new_version='0.1.1'
new_version='0.1.2'

with open("README.md", "r") as fh:
long_description = fh.read()
Expand All @@ -16,8 +16,8 @@
description="Color the worldmap",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/erdoganta/worldmap",
download_url = 'https://github.com/erdoganta/worldmap/archive/'+new_version+'.tar.gz',
url="https://github.com/erdogant/worldmap",
download_url = 'https://github.com/erdogant/worldmap/archive/'+new_version+'.tar.gz',
packages=setuptools.find_packages(), # Searches throughout all dirs for files to include
include_package_data=True, # Must be true to include files depicted in MANIFEST.in
classifiers=[
Expand Down

0 comments on commit 6e6d0ea

Please sign in to comment.