-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade version, add a license ('MIT'), added some keywords, add some…
… documentation, and add ability to not write lut's to file
- Loading branch information
1 parent
21c168b
commit 496db27
Showing
5 changed files
with
74 additions
and
48 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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# History | ||
|
||
## 0.0.2 (2024-04-17) | ||
|
||
* up date a bunch of stuff so that it works as a licensed, stand alone library. | ||
|
||
|
||
## 0.0.1 (2024-04-17) | ||
|
||
* Initial Release. |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
from setuptools import setup, find_packages | ||
|
||
setup(name = 'disco-tif', | ||
version = "0.0.1", | ||
version = "0.0.2", | ||
url = 'https://github.com/emerald-geomodelling/disco-tif', | ||
author = "Benjamin Bloss", | ||
author_email = '[email protected]', | ||
|
@@ -19,6 +19,7 @@ | |
], | ||
long_description = "Geotiff processing utilities", | ||
include_package_data = True, | ||
keywords = 'raster_processing', | ||
keywords = ['raster_processing', 'EMerald_custom_colormap', 'hillshade', 'pca'], | ||
license = 'MIT', | ||
packages = find_packages(), | ||
) |