Skip to content
Closed
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
Binary file added .DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.pytest_cache
latest_logs/

Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -103,4 +105,4 @@ celerybeat.pid
# Environments
.env

web3py.md
web3py.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down
Binary file added src/.DS_Store
Binary file not shown.
Binary file added src/story_protocol_python_sdk/.DS_Store
Binary file not shown.
9 changes: 8 additions & 1 deletion src/story_protocol_python_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -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']