-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create titiler namespaces packages (#284)
* sketch * fix tests? * same version * move mosaic to its own package * move config to setup.cfg * fix bumpversion config * fix bumpversion config * update bash config * switch to . for package namespace and fix coverage * fix cov * update docs * update coverage config * Readmes * absolute links * update changelog * add python 3.9 in CI * switch to importlib.resources.files
- Loading branch information
1 parent
7fbbd80
commit 6e589cf
Showing
114 changed files
with
2,247 additions
and
825 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
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#! /usr/bin/env bash | ||
|
||
SUBPACKAGE_DIRS=( | ||
"core" | ||
"mosaic" | ||
"application" | ||
) | ||
|
||
for PACKAGE_DIR in "${SUBPACKAGE_DIRS[@]}" | ||
do | ||
echo "publishing titiler-${PACKAGE_DIR}" | ||
pushd ./titiler/${PACKAGE_DIR} | ||
rm -rf dist | ||
python setup.py sdist | ||
# twine upload dist/* | ||
popd | ||
done |
Oops, something went wrong.