-
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 #17 from raphaelquast/dev
merge for v0.1.5
- Loading branch information
Showing
4 changed files
with
17 additions
and
14 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
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
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 |
---|---|---|
|
@@ -7,15 +7,15 @@ | |
from pathlib import Path | ||
from setuptools import setup, find_packages | ||
|
||
version = (Path(__file__).parent / "VERSION").read_text().strip() | ||
version = "0.1.5" | ||
|
||
setup( | ||
name="EOmaps", | ||
version=version, | ||
description="A general-purpose library to generate interactive plots of geographical datasets.", | ||
packages=find_packages(), | ||
package_dir={"eomaps": "eomaps"}, | ||
include_package_data=False, | ||
# include_package_data=True, | ||
author="Raphael Quast", | ||
author_email="[email protected]", | ||
maintainer="Raphael Quast", | ||
|