-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* version minor bc gotta do a processing thing * version minor
- Loading branch information
1 parent
1b59258
commit 0547bc4
Showing
8 changed files
with
27 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 |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# 0.1.0 | ||
|
||
- Drop python 3.7 (was good knowing you) | ||
- Update pyo3 to 0.20.0 | ||
- Added rasterio/rio entry points ('utiles' and 'ut' alias bc why type `rio utiles` over `rio ut`) | ||
|
||
|
||
# 0.0.2 | ||
|
||
- Added `__len__` to TilesGenerator for pbars |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
"""Package metadata/info""" | ||
|
||
from utiles.libutiles import __version_lib__ | ||
|
||
__all__ = ("__title__", "__description__", "__pkgroot__", "__version__") | ||
__title__ = "utiles" | ||
__description__ = "utiles = utils + tiles + rust" | ||
__pkgroot__ = __file__.replace("__about__.py", "").rstrip("/\\") | ||
__version__ = "0.0.2" | ||
__version__ = __version_lib__ |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import click | ||
from utiles.cli import cli as rio_utiles | ||
|
||
__all__ = ("rio_ut", "rio_utiles") | ||
|
||
rio_ut = click.CommandCollection( | ||
sources=[rio_utiles], name="ut", help="utiles cli (alias)" | ||
) |