From 806b08857362247d79c2e892c18b97bd2f7bbbf3 Mon Sep 17 00:00:00 2001 From: Peter Swain <pswain@Home-iMac.local> Date: Thu, 2 May 2024 20:25:14 +0100 Subject: [PATCH] change: src back to wela To ease imports. --- poetry.lock | 3 ++- pyproject.toml | 3 +-- {src => wela}/__init__.py | 0 {src => wela}/add_bud_fluorescence.py | 0 {src => wela}/autocrosscorr.py | 0 {src => wela}/butterfilter.py | 0 {src => wela}/correct_buds.py | 0 {src => wela}/dataloader.py | 0 {src => wela}/examples/create_tsv.py | 0 {src => wela}/examples/import_local.py | 0 {src => wela}/examples/plot_kymograph.py | 0 {src => wela}/examples/run_gr.py | 0 {src => wela}/examples/run_imageviewer.py | 0 {src => wela}/figs2pdf.py | 0 {src => wela}/growth_rate.py | 0 {src => wela}/imageviewer.py | 0 {src => wela}/plotting.py | 0 17 files changed, 3 insertions(+), 3 deletions(-) rename {src => wela}/__init__.py (100%) rename {src => wela}/add_bud_fluorescence.py (100%) rename {src => wela}/autocrosscorr.py (100%) rename {src => wela}/butterfilter.py (100%) rename {src => wela}/correct_buds.py (100%) rename {src => wela}/dataloader.py (100%) rename {src => wela}/examples/create_tsv.py (100%) rename {src => wela}/examples/import_local.py (100%) rename {src => wela}/examples/plot_kymograph.py (100%) rename {src => wela}/examples/run_gr.py (100%) rename {src => wela}/examples/run_imageviewer.py (100%) rename {src => wela}/figs2pdf.py (100%) rename {src => wela}/growth_rate.py (100%) rename {src => wela}/imageviewer.py (100%) rename {src => wela}/plotting.py (100%) diff --git a/poetry.lock b/poetry.lock index 827af4d..5eee6ee 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2471,6 +2471,7 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, @@ -3447,4 +3448,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "0a76a15500ae9f68fbf615e51eab1ce6cd9be8ab333f739698065f5607a41d24" +content-hash = "c22c9178f6ddbd42d390b0bbaf08127c5e37d3f77405a177ca1d66997b9758b3" diff --git a/pyproject.toml b/pyproject.toml index 4d40a5f..f5e81db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Time-series analysis" authors = ["Swainlab"] readme = "README.md" -packages = [{include = "src"}] +packages = [{include = "wela"}] [build-system] requires = ["poetry-core>=1.0.0"] @@ -13,7 +13,6 @@ build-backend = "poetry.core.masonry.api" [tool.poetry.dependencies] python = ">=3.8,<3.11" numpy = ">=1.21.6" -matplotlib = "^3.7.2" pandas = ">=2.0.3" scipy = ">=1.7.3" diff --git a/src/__init__.py b/wela/__init__.py similarity index 100% rename from src/__init__.py rename to wela/__init__.py diff --git a/src/add_bud_fluorescence.py b/wela/add_bud_fluorescence.py similarity index 100% rename from src/add_bud_fluorescence.py rename to wela/add_bud_fluorescence.py diff --git a/src/autocrosscorr.py b/wela/autocrosscorr.py similarity index 100% rename from src/autocrosscorr.py rename to wela/autocrosscorr.py diff --git a/src/butterfilter.py b/wela/butterfilter.py similarity index 100% rename from src/butterfilter.py rename to wela/butterfilter.py diff --git a/src/correct_buds.py b/wela/correct_buds.py similarity index 100% rename from src/correct_buds.py rename to wela/correct_buds.py diff --git a/src/dataloader.py b/wela/dataloader.py similarity index 100% rename from src/dataloader.py rename to wela/dataloader.py diff --git a/src/examples/create_tsv.py b/wela/examples/create_tsv.py similarity index 100% rename from src/examples/create_tsv.py rename to wela/examples/create_tsv.py diff --git a/src/examples/import_local.py b/wela/examples/import_local.py similarity index 100% rename from src/examples/import_local.py rename to wela/examples/import_local.py diff --git a/src/examples/plot_kymograph.py b/wela/examples/plot_kymograph.py similarity index 100% rename from src/examples/plot_kymograph.py rename to wela/examples/plot_kymograph.py diff --git a/src/examples/run_gr.py b/wela/examples/run_gr.py similarity index 100% rename from src/examples/run_gr.py rename to wela/examples/run_gr.py diff --git a/src/examples/run_imageviewer.py b/wela/examples/run_imageviewer.py similarity index 100% rename from src/examples/run_imageviewer.py rename to wela/examples/run_imageviewer.py diff --git a/src/figs2pdf.py b/wela/figs2pdf.py similarity index 100% rename from src/figs2pdf.py rename to wela/figs2pdf.py diff --git a/src/growth_rate.py b/wela/growth_rate.py similarity index 100% rename from src/growth_rate.py rename to wela/growth_rate.py diff --git a/src/imageviewer.py b/wela/imageviewer.py similarity index 100% rename from src/imageviewer.py rename to wela/imageviewer.py diff --git a/src/plotting.py b/wela/plotting.py similarity index 100% rename from src/plotting.py rename to wela/plotting.py -- GitLab