diff --git a/setup.py b/setup.py index b0187529..8891701d 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ #!/usr/bin/env python from setuptools import setup, find_packages -setup(name="python-instagram", - version="1.3.2", - description="Instagram API client", - license="MIT", - install_requires=["simplejson","httplib2","six"], - author="Instagram, Inc", - author_email="apidevelopers@instagram.com", - url="http://github.com/Instagram/python-instagram", +setup(name = "python-instagram", + version = "1.3.2", + description = "Instagram API-client", + license = "MIT", + install_requires = ["simplejson","httplib2","six"], + author = "Instagram, Inc", + author_email = "apidevelopers@instagram.com", + url = "http://github.com/Instagram/python-instagram", packages = find_packages(), - keywords= "instagram", + keywords = "instagram", zip_safe = True)