Skip to content

Commit

Permalink
rename package (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo authored Feb 10, 2023
1 parent 7710f5f commit e164147
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
run: |
pip install pdoc3
pip install -e .
python -We -m pdoc --html atmos_cloud_sim_uj_utils
JUPYTER_PLATFORM_DIRS=1 python -We -m pdoc --html open_atmos_jupyter_utils
- name: Deploy
if: github.ref == 'refs/heads/main'
uses: JamesIves/[email protected]
with:
BRANCH: pdoc
FOLDER: html/atmos_cloud_sim_uj_utils
FOLDER: html/open_atmos_jupyter_utils
CLEAN: true
6 changes: 0 additions & 6 deletions atmos_cloud_sim_uj_utils/__init__.py

This file was deleted.

6 changes: 6 additions & 0 deletions open_atmos_jupyter_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""
utility routines used in PySDM and PyMPDATA example Jupyter notebooks
"""
from open_atmos_jupyter_utils.pip_install_on_colab import pip_install_on_colab
from open_atmos_jupyter_utils.temporary_file import TemporaryFile
from open_atmos_jupyter_utils.show_plot import show_plot, save_and_make_link
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from IPython.display import display
from IPython.core.interactiveshell import InteractiveShell
from IPython.core.pylabtools import select_figure_formats
from atmos_cloud_sim_uj_utils.temporary_file import TemporaryFile
from open_atmos_jupyter_utils.temporary_file import TemporaryFile


def show_plot(filename=None, fig=pyplot, inline_format='svg'):
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_long_description():
author='https://github.com/open-atmos/jupyter-utils/graphs/contributors',
author_email='[email protected]',
license="GPL-3.0",
packages=find_packages(include=['atmos_cloud_sim_uj_utils', 'atmos_clous_sim_uj_utils.*']),
packages=find_packages(include=['open_atmos_jupyter_utils', 'open_atmos_jupyter_utils.*']),
long_description=get_long_description(),
long_description_content_type="text/markdown",
project_urls={
Expand Down

0 comments on commit e164147

Please sign in to comment.