Skip to content

Commit

Permalink
Another correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
ResidentMario committed Oct 15, 2017
1 parent 31a2259 commit f05531c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions geoplot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
from .geoplot import (pointplot, polyplot, choropleth, aggplot, cartogram, kdeplot, sankey)
from .crs import crs
from .utils import utils
from .crs import (PlateCarree, LambertCylindrical, Mercator, Miller, Mollweide, Robinson, Sinusoidal,
InterruptedGoodeHomolosine, Geostationary, NorthPolarStereo, SouthPolarStereo, Gnomonic,
AlbersEqualArea, AzimuthalEquidistant, LambertConformal, Orthographic, Stereographic,
TransverseMercator, LambertAzimuthalEqualArea, UTM, OSGB, EuroPP, OSNI)
from .utils import (gaussian_points, gaussian_polygons, gaussian_multi_polygons, uniform_random_global_points,
uniform_random_global_network, classify_clusters)
from .quad import (QuadTree, subpartition, flatten)
File renamed without changes.
Empty file removed geoplot/crs/__init__.py
Empty file.
File renamed without changes.
Empty file removed geoplot/utils/__init__.py
Empty file.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
packages = ['geoplot'], # this must be the same as the name above
install_requires=['matplotlib', 'seaborn', 'pandas', 'geopandas', 'cartopy'],
py_modules=['geoplot', 'crs', 'utils', 'quad'],
version = '0.1.0',
version = '0.1.1',
description = 'High-level geospatial plotting for Python.',
author = 'Aleksey Bilogur',
author_email = '[email protected]',
url = 'https://github.com/ResidentMario/geoplot',
download_url = 'https://github.com/ResidentMario/geoplot/tarball/0.1.0',
download_url = 'https://github.com/ResidentMario/geoplot/tarball/0.1.1',
keywords = ['data', 'data visualization', 'data analysis', 'data science', 'pandas', 'geospatial data',
'geospatial analytics'],
classifiers = [],
Expand Down

0 comments on commit f05531c

Please sign in to comment.