diff --git a/app.py b/app.py index 5bae3c7..301fab8 100644 --- a/app.py +++ b/app.py @@ -4,8 +4,8 @@ from loguru import logger from shiny import App, ui -from pyshiny_template.settings import AppSettings -from pyshiny_template.view.root import get_dashboard_ui, server +from tapyr_template.settings import AppSettings +from tapyr_template.view.root import get_dashboard_ui, server # Setup settings and logger app_settings = AppSettings() diff --git a/notebooks/01_experiments.ipynb b/notebooks/01_experiments.ipynb index d1df985..907936f 100644 --- a/notebooks/01_experiments.ipynb +++ b/notebooks/01_experiments.ipynb @@ -16,7 +16,7 @@ "metadata": {}, "outputs": [], "source": [ - "from pyshiny_template.logic.utils import divide" + "from tapyr_template.logic.utils import divide" ] }, { @@ -72,7 +72,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.2" + "version": "3.12.3" } }, "nbformat": 4, diff --git a/pyproject.toml b/pyproject.toml index eb75d44..56fdd84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] -name = "pyshiny-template" +name = "tapyr_template" version = "0.1.0" description = "" authors = ["Piotr Pasza Storozenko "] readme = "README.md" -packages = [{include = "pyshiny_template"}] +packages = [{include = "tapyr_template"}] [tool.coverage.run] -source = ["pyshiny_template"] +source = ["tapyr_template"] [tool.poetry.dependencies] python = "^3.10" diff --git a/quality_checks.sh b/quality_checks.sh index dfea186..6521933 100755 --- a/quality_checks.sh +++ b/quality_checks.sh @@ -8,4 +8,4 @@ echo "Running pytest for unit tests..." poetry run pytest echo "Running mypy for type checking..." -poetry run mypy pyshiny_template +poetry run mypy tapyr_template diff --git a/pyshiny_template/__init__.py b/tapyr_template/__init__.py similarity index 100% rename from pyshiny_template/__init__.py rename to tapyr_template/__init__.py diff --git a/pyshiny_template/logic/__init__.py b/tapyr_template/logic/__init__.py similarity index 100% rename from pyshiny_template/logic/__init__.py rename to tapyr_template/logic/__init__.py diff --git a/pyshiny_template/logic/utils.py b/tapyr_template/logic/utils.py similarity index 100% rename from pyshiny_template/logic/utils.py rename to tapyr_template/logic/utils.py diff --git a/pyshiny_template/settings.py b/tapyr_template/settings.py similarity index 100% rename from pyshiny_template/settings.py rename to tapyr_template/settings.py diff --git a/pyshiny_template/view/__init__.py b/tapyr_template/view/__init__.py similarity index 100% rename from pyshiny_template/view/__init__.py rename to tapyr_template/view/__init__.py diff --git a/pyshiny_template/view/root/__init__.py b/tapyr_template/view/root/__init__.py similarity index 100% rename from pyshiny_template/view/root/__init__.py rename to tapyr_template/view/root/__init__.py diff --git a/pyshiny_template/view/root/server.py b/tapyr_template/view/root/server.py similarity index 100% rename from pyshiny_template/view/root/server.py rename to tapyr_template/view/root/server.py diff --git a/pyshiny_template/view/root/ui.py b/tapyr_template/view/root/ui.py similarity index 100% rename from pyshiny_template/view/root/ui.py rename to tapyr_template/view/root/ui.py diff --git a/tests/pytest/test_utils.py b/tests/pytest/test_utils.py index 37e0c4d..9de4393 100644 --- a/tests/pytest/test_utils.py +++ b/tests/pytest/test_utils.py @@ -1,6 +1,6 @@ import pytest -from pyshiny_template.logic.utils import divide +from tapyr_template.logic.utils import divide from tests.helpers.logging_helpers import log_contain_message