From ae6ee0a53f4688c6dadae96ff5a8ccdd504c3f67 Mon Sep 17 00:00:00 2001 From: Robbie Capps Date: Wed, 14 Aug 2024 16:04:54 -0700 Subject: [PATCH] public commit --- README.md | 46 ++++++++++++++++++++++++++++++++++++++++++++-- poetry.lock | 16 ++++++++-------- pyproject.toml | 7 +------ 3 files changed, 53 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 99cb4d4..5cf8779 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/poetry.lock b/poetry.lock index 791c433..f73a78f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -168,20 +168,20 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pytest" -version = "8.2.2" +version = "8.3.2" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.2.2-py3-none-any.whl", hash = "sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343"}, - {file = "pytest-8.2.2.tar.gz", hash = "sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977"}, + {file = "pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5"}, + {file = "pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce"}, ] [package.dependencies] colorama = {version = "*", markers = "sys_platform == \"win32\""} iniconfig = "*" packaging = "*" -pluggy = ">=1.5,<2.0" +pluggy = ">=1.5,<2" [package.extras] dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] @@ -206,13 +206,13 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] [[package]] name = "textual" -version = "0.67.1" +version = "0.76.0" description = "Modern Text User Interface framework" optional = false -python-versions = "<4.0,>=3.8" +python-versions = "<4.0.0,>=3.8.1" files = [ - {file = "textual-0.67.1-py3-none-any.whl", hash = "sha256:6c65e37f2114b5c8d74499586769aee763c14238a7671e0d0cf823b5f47ee6ac"}, - {file = "textual-0.67.1.tar.gz", hash = "sha256:9d8708b2d1bf82de800b7da2202de26e6059d6106c67bf91e47b8a4763b3e8f5"}, + {file = "textual-0.76.0-py3-none-any.whl", hash = "sha256:e2035609c889dba507d34a5d7b333f1c8c53a29fb170962cb92101507663517a"}, + {file = "textual-0.76.0.tar.gz", hash = "sha256:b12e8879d591090c0901b5cb8121d086e28e677353b368292d3865ec99b83b70"}, ] [package.dependencies] diff --git a/pyproject.toml b/pyproject.toml index f7d10ae..731e92d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scriptyscripts" -version = "0.3.24a0" +version = "0.3.25" description = "scriptyscripts for silly kicks." authors = ["Robbie Capps "] 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]