Skip to content

Commit

Permalink
refactor: rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorozenko committed Apr 24, 2024
1 parent 94f051d commit 6874f33
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions notebooks/01_experiments.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"metadata": {},
"outputs": [],
"source": [
"from pyshiny_template.logic.utils import divide"
"from tapyr_template.logic.utils import divide"
]
},
{
Expand Down Expand Up @@ -72,7 +72,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.2"
"version": "3.12.3"
}
},
"nbformat": 4,
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "pyshiny-template"
name = "tapyr_template"
version = "0.1.0"
description = ""
authors = ["Piotr Pasza Storozenko <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion quality_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/pytest/test_utils.py
Original file line number Diff line number Diff line change
@@ -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


Expand Down

0 comments on commit 6874f33

Please sign in to comment.