from setuptools import find_packages from setuptools import setup from cdnmanifest import __version__ setup( name='cdnmanifest', version=__version__, url='https://github.com/theorchard/python-cdn-manifest/', author='The Orchard', author_email='webdev@theorchard.com', description=('CDN Manifest library.'), packages=find_packages(), include_package_data=True, install_requires=['boto3'], zip_safe=False, classifiers=[ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ],)