Skip to content

Commit e164147

Browse files
authored
rename package (#17)
1 parent 7710f5f commit e164147

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/pdoc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
run: |
1919
pip install pdoc3
2020
pip install -e .
21-
python -We -m pdoc --html atmos_cloud_sim_uj_utils
21+
JUPYTER_PLATFORM_DIRS=1 python -We -m pdoc --html open_atmos_jupyter_utils
2222
- name: Deploy
2323
if: github.ref == 'refs/heads/main'
2424
uses: JamesIves/[email protected]
2525
with:
2626
BRANCH: pdoc
27-
FOLDER: html/atmos_cloud_sim_uj_utils
27+
FOLDER: html/open_atmos_jupyter_utils
2828
CLEAN: true

atmos_cloud_sim_uj_utils/__init__.py

-6
This file was deleted.

open_atmos_jupyter_utils/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
utility routines used in PySDM and PyMPDATA example Jupyter notebooks
3+
"""
4+
from open_atmos_jupyter_utils.pip_install_on_colab import pip_install_on_colab
5+
from open_atmos_jupyter_utils.temporary_file import TemporaryFile
6+
from open_atmos_jupyter_utils.show_plot import show_plot, save_and_make_link

atmos_cloud_sim_uj_utils/show_plot.py renamed to open_atmos_jupyter_utils/show_plot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from IPython.display import display
55
from IPython.core.interactiveshell import InteractiveShell
66
from IPython.core.pylabtools import select_figure_formats
7-
from atmos_cloud_sim_uj_utils.temporary_file import TemporaryFile
7+
from open_atmos_jupyter_utils.temporary_file import TemporaryFile
88

99

1010
def show_plot(filename=None, fig=pyplot, inline_format='svg'):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def get_long_description():
2323
author='https://github.com/open-atmos/jupyter-utils/graphs/contributors',
2424
author_email='[email protected]',
2525
license="GPL-3.0",
26-
packages=find_packages(include=['atmos_cloud_sim_uj_utils', 'atmos_clous_sim_uj_utils.*']),
26+
packages=find_packages(include=['open_atmos_jupyter_utils', 'open_atmos_jupyter_utils.*']),
2727
long_description=get_long_description(),
2828
long_description_content_type="text/markdown",
2929
project_urls={

0 commit comments

Comments
 (0)