diff --git a/content/skeleton.py b/content/skeleton.py index c5a202b..6ad9513 100644 --- a/content/skeleton.py +++ b/content/skeleton.py @@ -5,7 +5,7 @@ ``[options.entry_points]`` section in ``setup.cfg``:: console_scripts = - fibonacci = osc_physrisk_financial.skeleton:run + fibonacci = osc_physrisk_metadata.skeleton:run Then run ``pip install .`` (or ``pip install -e .`` for editable mode) which will install the command ``fibonacci`` inside your current environment. @@ -28,7 +28,7 @@ import logging import sys -from osc_physrisk_financial import __version__ +from osc_physrisk_metadata import __version__ __author__ = "github-actions[bot]" __copyright__ = "github-actions[bot]" @@ -40,7 +40,7 @@ # ---- Python API ---- # The functions defined in this section can be imported by users in their # Python scripts/interactive interpreter, e.g. via -# `from osc_physrisk_financial.skeleton import fib`, +# `from osc_physrisk_metadata.skeleton import fib`, # when using this Python module as a library. @@ -148,6 +148,6 @@ def run(): # After installing your project with pip, users can also run your Python # modules as scripts via the ``-m`` flag, as defined in PEP 338:: # - # python -m osc_physrisk_financial.skeleton 42 + # python -m osc_physrisk_metadata.skeleton 42 # run() diff --git a/src/osc_physrisk_metadata/skeleton.py b/src/osc_physrisk_metadata/skeleton.py index c5a202b..6ad9513 100644 --- a/src/osc_physrisk_metadata/skeleton.py +++ b/src/osc_physrisk_metadata/skeleton.py @@ -5,7 +5,7 @@ ``[options.entry_points]`` section in ``setup.cfg``:: console_scripts = - fibonacci = osc_physrisk_financial.skeleton:run + fibonacci = osc_physrisk_metadata.skeleton:run Then run ``pip install .`` (or ``pip install -e .`` for editable mode) which will install the command ``fibonacci`` inside your current environment. @@ -28,7 +28,7 @@ import logging import sys -from osc_physrisk_financial import __version__ +from osc_physrisk_metadata import __version__ __author__ = "github-actions[bot]" __copyright__ = "github-actions[bot]" @@ -40,7 +40,7 @@ # ---- Python API ---- # The functions defined in this section can be imported by users in their # Python scripts/interactive interpreter, e.g. via -# `from osc_physrisk_financial.skeleton import fib`, +# `from osc_physrisk_metadata.skeleton import fib`, # when using this Python module as a library. @@ -148,6 +148,6 @@ def run(): # After installing your project with pip, users can also run your Python # modules as scripts via the ``-m`` flag, as defined in PEP 338:: # - # python -m osc_physrisk_financial.skeleton 42 + # python -m osc_physrisk_metadata.skeleton 42 # run()