From ac659dc8a81a7b3fbda38486c0db90856b4f3146 Mon Sep 17 00:00:00 2001 From: bpolania Date: Wed, 26 Mar 2025 16:25:36 -0700 Subject: [PATCH 1/2] Version and imports update --- setup.py | 2 +- src/story_protocol_python_sdk/__init__.py | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b0b9056..740148b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='story_protocol_python_sdk', - version='0.3.7', + version='0.3.12rc1', packages=find_packages(where='src', exclude=["tests"]), package_dir={'': 'src'}, install_requires=[ diff --git a/src/story_protocol_python_sdk/__init__.py b/src/story_protocol_python_sdk/__init__.py index a41fed9..dd7033f 100644 --- a/src/story_protocol_python_sdk/__init__.py +++ b/src/story_protocol_python_sdk/__init__.py @@ -1,6 +1,12 @@ +__version__ = "0.3.12rc1" + from .story_client import StoryClient from .resources.IPAsset import IPAsset from .resources.License import License from .resources.Royalty import Royalty +from .resources.IPAccount import IPAccount +from .resources.Dispute import Dispute +from .resources.WIP import WIP + -__all__ = ['StoryClient', 'IPAsset', 'License', 'Royalty'] +__all__ = ['StoryClient', 'IPAsset', 'License', 'Royalty', 'IPAccount', 'Dispute', 'NFTClient', 'Permission', 'WIP'] \ No newline at end of file From 2a426313bf1df7c67209616c488a8f1421156c64 Mon Sep 17 00:00:00 2001 From: bpolania Date: Wed, 26 Mar 2025 16:28:13 -0700 Subject: [PATCH 2/2] Update __init__.py --- src/story_protocol_python_sdk/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/story_protocol_python_sdk/__init__.py b/src/story_protocol_python_sdk/__init__.py index dd7033f..2a660c4 100644 --- a/src/story_protocol_python_sdk/__init__.py +++ b/src/story_protocol_python_sdk/__init__.py @@ -9,4 +9,4 @@ from .resources.WIP import WIP -__all__ = ['StoryClient', 'IPAsset', 'License', 'Royalty', 'IPAccount', 'Dispute', 'NFTClient', 'Permission', 'WIP'] \ No newline at end of file +__all__ = ['StoryClient', 'IPAsset', 'License', 'Royalty', 'IPAccount', 'Dispute', 'WIP'] \ No newline at end of file