-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
535 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# Changes here will be overwritten by Copier | ||
_commit: 4964f16 | ||
_commit: a01a11e | ||
_src_path: https://codeberg.org/Fresh2dev/copier-f2dv-project.git | ||
author_email: [email protected] | ||
author_name: Donald Mellenbruch | ||
ci_domain_name: lokalhost.net | ||
docs_url: https://www.f2dv.com/code/r/tuiview/i | ||
docs_url: https://www.f2dv.com/r/tuiview | ||
funding_url: https://www.f2dv.com/fund | ||
home_domain: f2dv.com | ||
home_page: https://www.f2dv.com | ||
is_minimal: false | ||
is_python: true | ||
license_type: GPLv3 | ||
package_name: tuiview | ||
project_description: A TUI for every CLI | ||
project_description: A TUI for every CLI. | ||
project_name: tuiview | ||
python_version: '3.8' | ||
repo_mirror: https://www.f2dv.com/code/r/tuiview | ||
repo_mirror: https://www.f2dv.com/r/tuiview | ||
repo_name: fresh2dev/tuiview | ||
repo_owner: fresh2dev | ||
repo_url: https://www.github.com/fresh2dev/tuiview | ||
|
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 @@ | ||
custom: ["https://www.f2dv.com/fund", "https://www.f2dv.com/paypal"] |
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 @@ | ||
# Changelog | ||
|
||
## 0.1.0a1 - 2023-07-28 | ||
|
||
- Initial pre-release | ||
|
||
SLOC Analysis: | ||
|
||
| Directory | Empty | Comment | Docstring | Code | Statements | | ||
|-------------|---------|-----------|-------------|--------|--------------| | ||
| src/tuiview | 119 | 12 | 226 | 790 | 300 | | ||
| tests | 24 | 3 | 1 | 72 | 58 | |
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,7 @@ | ||
ARG HB_IMAGE_REGISTRY=docker.io | ||
FROM ${HB_IMAGE_REGISTRY}/nginx:1 | ||
LABEL org.opencontainers.image.source=https://www.github.com/fresh2dev/tuiview | ||
LABEL org.opencontainers.image.description="A TUI for every CLI" | ||
LABEL org.opencontainers.image.description="A TUI for every CLI." | ||
LABEL org.opencontainers.image.licenses=GPLv3 | ||
ARG CONTENT_PATH=public | ||
COPY $CONTENT_PATH /usr/share/nginx/html |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "tuiview" | |
authors = [ | ||
{name = "Donald Mellenbruch", email = "[email protected]"}, | ||
] | ||
description = "A TUI for every CLI" | ||
description = "A TUI for every CLI." | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.8" | ||
|
@@ -17,7 +17,7 @@ classifiers = [ | |
dynamic = ["version"] | ||
dependencies = [ | ||
"typing-extensions; python_version<'3.10'", | ||
"yapx[tui]>=0.2.1,<1", | ||
"yapx[tui]>=0.2.2,<1", | ||
] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -57,7 +57,7 @@ tests = [ | |
] | ||
|
||
[project.urls] | ||
Homepage = "https://www.f2dv.com/code/r/tuiview/i" | ||
Homepage = "https://www.f2dv.com/r/tuiview" | ||
Repository = "https://www.github.com/fresh2dev/tuiview" | ||
Funding = "https://www.f2dv.com/fund" | ||
|
||
|
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
Oops, something went wrong.