-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from raphaelquast/dev
fix pypi can't read README
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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, | ||
|
@@ -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", | ||
|