See More

from setuptools import setup version = '0.3' setup(name='bitly_api', version=version, description="An API for bit.ly", long_description=open("./README.md", "r").read(), classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities", "License :: OSI Approved :: Apache Software License", ], keywords='bitly bit.ly', author='Jehiah Czebotar', author_email='[email protected]', url='https://github.com/bitly/bitly-api-python', license='Apache Software License', packages=['bitly_api'], include_package_data=True, zip_safe=True, )