Initial commit

This commit is contained in:
samedamci 2021-08-26 22:25:06 +02:00
commit a98ba68f49
No known key found for this signature in database
GPG Key ID: FCB4A9A20D00E894
4 changed files with 62 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.venv/
.vscode/
__pycache__/

13
LICENSE Normal file
View File

@ -0,0 +1,13 @@
Copyright (c) 2021, samedamci <samedamci@disroot.org>
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

16
guzzy/__main__.py Normal file
View File

@ -0,0 +1,16 @@
from os import listdir, path
from argparse import ArgumentParser
from subprocess import call
dir_path = path.join(path.dirname(path.realpath(__file__)), "commands")
commands = [x.replace(".sh", "") for x in listdir(dir_path)]
parser = ArgumentParser(
prog="guzzy",
description="Interactive CLI git client inside fzf.",
allow_abbrev=False,
)
parser.add_argument("command", choices=commands)
args = parser.parse_args()
call(path.join(dir_path, f"{args.command}.sh"), shell=True)

30
pyproject.toml Normal file
View File

@ -0,0 +1,30 @@
[tool.poetry]
name = "guzzy"
version = "0.1.0"
description = "Interactive CLI git client inside fzf."
authors = ["samedamci <samedamci@disroot.org>"]
license = "ISC"
homepage = "https://github.com/samedamci/guzzy"
repository = "https://github.com/samedamci/guzzy"
keywords = ["git", "fzf"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.scripts]
guzzy = "guzzy:__main__"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"