From 8392a4eb24ba3ea5082fabcd27bfcf4acb7fff2a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 15 Sep 2019 13:03:10 -0400 Subject: [PATCH] bake --- {bashf => bake}/__init__.py | 0 {bashf => bake}/bash.py | 0 {bashf => bake}/bashfile.py | 0 {bashf => bake}/cli.py | 2 +- {bashf => bake}/config.py | 0 {bashf => bake}/environment.py | 0 {bashf => bake}/scripts/stdlib.sh | 0 setup.py | 4 ++-- 8 files changed, 3 insertions(+), 3 deletions(-) rename {bashf => bake}/__init__.py (100%) rename {bashf => bake}/bash.py (100%) rename {bashf => bake}/bashfile.py (100%) rename {bashf => bake}/cli.py (98%) rename {bashf => bake}/config.py (100%) rename {bashf => bake}/environment.py (100%) rename {bashf => bake}/scripts/stdlib.sh (100%) diff --git a/bashf/__init__.py b/bake/__init__.py similarity index 100% rename from bashf/__init__.py rename to bake/__init__.py diff --git a/bashf/bash.py b/bake/bash.py similarity index 100% rename from bashf/bash.py rename to bake/bash.py diff --git a/bashf/bashfile.py b/bake/bashfile.py similarity index 100% rename from bashf/bashfile.py rename to bake/bashfile.py diff --git a/bashf/cli.py b/bake/cli.py similarity index 98% rename from bashf/cli.py rename to bake/cli.py index 884e0fe..73579e6 100644 --- a/bashf/cli.py +++ b/bake/cli.py @@ -86,7 +86,7 @@ def task( whitelist, yes, ): - """bashf — Bashfile runner (the familiar Bash/Make hybrid).""" + """bake — the familiar Bash/Make hybrid.""" # Default to list behavior, when no task is provided. if no_color: diff --git a/bashf/config.py b/bake/config.py similarity index 100% rename from bashf/config.py rename to bake/config.py diff --git a/bashf/environment.py b/bake/environment.py similarity index 100% rename from bashf/environment.py rename to bake/environment.py diff --git a/bashf/scripts/stdlib.sh b/bake/scripts/stdlib.sh similarity index 100% rename from bashf/scripts/stdlib.sh rename to bake/scripts/stdlib.sh diff --git a/setup.py b/setup.py index 0cda6fe..4fcc7aa 100644 --- a/setup.py +++ b/setup.py @@ -12,9 +12,9 @@ from shutil import rmtree from setuptools import find_packages, setup, Command # Package meta-data. -NAME = "bashf" +NAME = "bake" DESCRIPTION = "The familar Make / Bash hybrid." -URL = "https://github.com/kennethreitz/bashfile" +URL = "https://github.com/kennethreitz/bake" EMAIL = "me@kennethreitz.org" AUTHOR = "Kenneth Reitz" REQUIRES_PYTHON = ">=3.6.0"