Skip to content

Commit

Permalink
working version for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Stan van Rooy committed Jul 26, 2020
1 parent a873960 commit 338c80a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions instauto/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from api import structs
from api.client import ApiClient
from api.actions.structs import friendships as friendships_structs
from api.actions.structs import search as search_structs
from api.actions.structs import profile as profile_structs
from api.actions.structs import post as post_structs
from api import exceptions
from .api import structs
from .api.client import ApiClient
from .api.actions.structs import friendships as friendships_structs
from .api.actions.structs import search as search_structs
from .api.actions.structs import profile as profile_structs
from .api.actions.structs import post as post_structs
from .api import exceptions
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setup(
name = 'instauto', # How you named your package folder (MyLib)
packages = ['instauto'], # Chose the same as "name"
version = '0.0.3', # Start with a small number and increase it with every change you make
version = '0.0.4', # Start with a small number and increase it with every change you make
license='GNU GPLv3', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Python wrapper for the private Instagram API', # Give a short description about your library
author = 'Stan van Rooy', # Type in your name
Expand Down

0 comments on commit 338c80a

Please sign in to comment.