diff --git a/fastapi_template/__init__.py b/fastapi_plan/__init__.py similarity index 72% rename from fastapi_template/__init__.py rename to fastapi_plan/__init__.py index dfe1e5c..5201cf0 100644 --- a/fastapi_template/__init__.py +++ b/fastapi_plan/__init__.py @@ -1,6 +1,6 @@ __version__ = "0.1.0" -from fastapi_template.greet_command import GreetCommand +from fastapi_plan.greet_command import GreetCommand from cleo import Application application = Application() diff --git a/fastapi_template/greet_command.py b/fastapi_plan/greet_command.py similarity index 100% rename from fastapi_template/greet_command.py rename to fastapi_plan/greet_command.py diff --git a/tests/test_fastapi_template.py b/tests/test_fastapi_template.py index a836a9e..bca42b4 100644 --- a/tests/test_fastapi_template.py +++ b/tests/test_fastapi_template.py @@ -1,5 +1,5 @@ -from fastapi_template import __version__ +from fastapi_plan import __version__ def test_version(): - assert __version__ == '0.1.0' + assert __version__ == "0.1.0"