Skip to content

Commit

Permalink
update version and remove unused pathlib import in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelquast committed Oct 12, 2021
1 parent f803542 commit b4ae8f0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
This file is part of EOmaps.
For COPYING and LICENSE details, please refer to the LICENSE file
"""
from pathlib import Path
from setuptools import setup, find_packages

version = "0.1.5"
version = "0.1.6"

setup(
name="EOmaps",
version=version,
description="A general-purpose library to generate interactive plots of geographical datasets.",
description="A general-purpose library to generate interactive maps of geographical datasets.",
packages=find_packages(),
package_dir={"eomaps": "eomaps"},
# include_package_data=True,
Expand All @@ -24,7 +23,7 @@
url="https://github.com/raphaelquast/maps",
long_description=(
"A python module to quickly generate interactive "
+ "plots of geographical datasets."
+ "maps of geographical datasets."
),
install_requires=[
"numpy",
Expand Down

0 comments on commit b4ae8f0

Please sign in to comment.