Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MNT] Rename project #5

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions elastic_warp_vis/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.1.0"
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from aeon.distances import cost_matrix
from aeon.distances._alignment_paths import compute_min_return_path

from src.utils import alignment_path_to_plot
from elastic_warp_vis.utils import alignment_path_to_plot


def draw_elastic(
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import hydra
from omegaconf import DictConfig, OmegaConf

from src.utils import create_directory, load_data
from src.draw_functions import draw_elastic, draw_elastic_gif
from elastic_warp_vis.utils import create_directory, load_data
from elastic_warp_vis.draw_functions import draw_elastic, draw_elastic_gif


@hydra.main(config_name="config_hydra.yaml", config_path="config")
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "elastic-warping-visualization"
version = "0.0.1"
version = "0.1.0"
description = " Visualization of Elastic Warping of Time Series Data "
authors = [
{name = "Ali Ismail-Fawaz", email = "[email protected]"},
Expand Down Expand Up @@ -66,4 +66,4 @@ dev = [
]

[tool.setuptools]
packages = ["src"]
packages = ["elastic_warp_vis"]
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# setup.py

from setuptools import setup

setup()
Loading