Skip to content

Commit

Permalink
Merge pull request #5 from MSD-IRIMAS/aif/add-pypi
Browse files Browse the repository at this point in the history
[MNT] Rename project
  • Loading branch information
hadifawaz1999 authored Jul 29, 2024
2 parents e5ce18e + 9428135 commit 34fc7b3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
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 = "ali-el-hadi.ismail-fawaz@uha.fr"},
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()

0 comments on commit 34fc7b3

Please sign in to comment.