-
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
3 changed files
with
53 additions
and
16 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,9 +1,51 @@ | ||
# scriptyscripts | ||
|
||
*CLI interface for running custom scripts* | ||
*python-based CLI tool for home-directory configuration, custom tooling, running custom scripts.* | ||
|
||
## DISCLAIMER | ||
|
||
**This is a work-in-progress.** | ||
|
||
The author isn't liable for anything that happens because you tried using this. `<3` | ||
|
||
## About | ||
|
||
This version of `scriptyscripts` is a public fork of the custom toolkit that I developed organically out of necessity. | ||
|
||
It's intentionally boilerplate. | ||
|
||
Not sure yet how much I'll be working on this-- please indicate your interest by *star*-ing the project, or open an issue if you want to discuss something specific. | ||
|
||
Hope this toolkit improves your quality of life. `<3` | ||
|
||
## Install (recommended method) | ||
|
||
```[shell] | ||
$ # Clone the repo to $HOME/scriptyscripts. | ||
$ cd ~ | ||
$ gh repo clone rockybranches/scriptyscripts | ||
$ cd ./scriptyscripts | ||
$ # Installation using poetry (highly recommended) | ||
$ poetry install | ||
``` | ||
|
||
### | ||
|
||
|
||
## Usage | ||
|
||
See the output of: | ||
|
||
`$ sscripts --help` | ||
|
||
## Author | ||
|
||
Robbie Capps, 2023 | ||
Robert "Robbie" Ahlroth Capps, 2024 | ||
|
||
## LICENSE | ||
|
||
All Rights Reserved | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "scriptyscripts" | ||
version = "0.3.24a0" | ||
version = "0.3.25" | ||
description = "scriptyscripts for silly kicks." | ||
authors = ["Robbie Capps <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -19,11 +19,6 @@ click = "^8.1.7" | |
toml = "^0.10.2" | ||
prompt-toolkit = "^3.0.43" | ||
pytest = "^8.2.0" | ||
|
||
# [[tool.poetry.source]] | ||
# name = "z38s-pypi-packages" | ||
# url = "http://localhost:1111/simple" | ||
# priority = "primary" | ||
trogon = "^0.5.0" | ||
|
||
[build-system] | ||
|