-
Notifications
You must be signed in to change notification settings - Fork 25
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 #28 from raphaelquast/dev
merge for v2.0.1
- Loading branch information
Showing
1 changed file
with
6 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,13 +5,13 @@ | |
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" | ||
version = "2.0.1" | ||
|
||
setup( | ||
name="EOmaps", | ||
|
@@ -26,7 +26,8 @@ | |
maintainer_email="[email protected]", | ||
license="GNU General Public License v3 or later (GPLv3+)", | ||
url="https://github.com/raphaelquast/maps", | ||
long_description="A library to generate interactive maps of geographical datasets", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
install_requires=[ | ||
"numpy", | ||
"pandas", | ||
|