-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add basic cli * chore: added changelog entry * chore: update tox config * chore: add tests to cli * chore: apply refurb suggestions * chore: change tests for windows * feat: add progress bars to pbf reader * chore: change tests for windows * fix: change optional imports for doctests * chore: modify readme and add step counter * chore: fix functions results * chore: change tests for windows
- Loading branch information
Showing
16 changed files
with
4,137 additions
and
615 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"""Main CLI module.""" | ||
|
||
from quackosm import __app_name__, cli | ||
|
||
|
||
def main() -> None: | ||
"""Run provided CLI.""" | ||
cli.app(prog_name=__app_name__) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
Oops, something went wrong.