diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..feca9dc Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index efbdec4..c7e4265 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.DS_Store .pytest_cache latest_logs/ @@ -25,6 +26,7 @@ var/ *.egg-info/ .installed.cfg *.egg + # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. @@ -103,4 +105,4 @@ celerybeat.pid # Environments .env -web3py.md \ No newline at end of file +web3py.md 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/.DS_Store b/src/.DS_Store new file mode 100644 index 0000000..5bfb446 Binary files /dev/null and b/src/.DS_Store differ diff --git a/src/story_protocol_python_sdk/.DS_Store b/src/story_protocol_python_sdk/.DS_Store new file mode 100644 index 0000000..ddd7790 Binary files /dev/null and b/src/story_protocol_python_sdk/.DS_Store differ diff --git a/src/story_protocol_python_sdk/__init__.py b/src/story_protocol_python_sdk/__init__.py index a41fed9..7aaf02c 100644 --- a/src/story_protocol_python_sdk/__init__.py +++ b/src/story_protocol_python_sdk/__init__.py @@ -1,6 +1,13 @@ +__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', 'IPAccount', 'Dispute', 'NFTClient', 'Permission', 'WIP'] -__all__ = ['StoryClient', 'IPAsset', 'License', 'Royalty']