Skip to content

Commit

Permalink
Merge pull request #27 from raphaelquast/dev
Browse files Browse the repository at this point in the history
fix pypi  can't read README
  • Loading branch information
raphaelquast authored Nov 23, 2021
2 parents 9e0d291 + 2d26061 commit dd5e69f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
For COPYING and LICENSE details, please refer to the LICENSE file
"""
from setuptools import setup, find_packages
from pathlib import Path

# from pathlib import Path
# add the README as long-description
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
# this_directory = Path(__file__).parent
# long_description = (this_directory / "README.md").read_text()

version = "2.0"

setup(
name="EOmaps",
version=version,
description="A general-purpose library to generate interactive maps of geographical datasets.",
description="A library to generate interactive maps of geographical datasets.",
packages=find_packages(),
package_dir={"eomaps": "eomaps"},
# include_package_data=True,
Expand All @@ -26,7 +26,7 @@
maintainer_email="[email protected]",
license="GNU General Public License v3 or later (GPLv3+)",
url="https://github.com/raphaelquast/maps",
long_description=long_description,
long_description="A library to generate interactive maps of geographical datasets",
install_requires=[
"numpy",
"pandas",
Expand Down

0 comments on commit dd5e69f

Please sign in to comment.