Skip to content

Commit

Permalink
updated README and setup
Browse files Browse the repository at this point in the history
  • Loading branch information
internaut committed Mar 16, 2018
1 parent 487fde6 commit 7f24658
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -12,7 +12,7 @@ It takes a list of coordinates and calculates the Voronoi regions from them usin

## Installation

This package is available on [PyPI](). You can install the latest version via *pip* as follows:
This package is available on [PyPI](https://pypi.org/project/geovoronoi/). You can install the latest version via *pip* as follows:

```
# install with "plotting" dependencies (recommended):
Expand Down Expand Up @@ -106,4 +106,4 @@ See the full example source code in [examples/random_points_across_italy.py](exa

## License

Licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). See `LICENSE` file.
Licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). See `LICENSE.txt` file.
10 changes: 7 additions & 3 deletions setup.py
Expand Up @@ -6,6 +6,7 @@

import geovoronoi

GITHUB_URL = 'https://github.com/WZBSocialScienceCenter/geovoronoi'

setup(
name=geovoronoi.__title__,
Expand All @@ -14,8 +15,11 @@
long_description="""geovoronoi is a small Python 3 package that uses SciPy to generate Voronoi regions for a given
set of points in a given geographic area. It then allows to intersect the geographic area with these Voronoi regions so
that they are limited to the geographic area. Furthermore, functions to visualize the results are implemented.""",
url='https://github.com/WZBSocialScienceCenter/geovoronoi',

url=GITHUB_URL,
project_urls={
'Source': GITHUB_URL,
'Tracker': 'https://github.com/WZBSocialScienceCenter/geovoronoi' + '/issues',
},
author='Markus Konrad',
author_email='markus.konrad@wzb.eu',

Expand All @@ -39,7 +43,7 @@
'Topic :: Utilities',
],

keywords='voronoi tesselation gis geographic area',
keywords='voronoi tesselation gis geographic area visualization plotting',

packages=['geovoronoi'],
# include_package_data=True,
Expand Down

0 comments on commit 7f24658

Please sign in to comment.