Skip to content

Commit

Permalink
Merge pull request #24 from Schrodinger-Hat/fix/23
Browse files Browse the repository at this point in the history
fix(dep): add scikit-image
  • Loading branch information
TheJoin95 authored Apr 17, 2024
2 parents 706b654 + 3c58161 commit 3dfa415
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ImageGoNord/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gonord version
__version__ = "1.0.1"
__version__ = "1.0.2"

from ImageGoNord.GoNord import *
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="image-go-nord",
version="1.0.1",
version="1.0.2",
description="A tool to convert any RGB image or video to any theme or color palette input by the user",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -32,6 +32,6 @@
packages=find_packages(),
package_data={'': ['*.txt', 'palettes/*.txt', 'models/*.pt', '*.pt', '*.state_dict.*']},
include_package_data=True,
install_requires=["Pillow", "ffmpeg-python", "numpy", "torch", "skimage", "torchvision"],
install_requires=["Pillow", "ffmpeg-python", "numpy", "torch", "scikit-image", "torchvision"],
python_requires=">=3.5"
)

0 comments on commit 3dfa415

Please sign in to comment.