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"