from setuptools import find_packages from setuptools import setup from owsresponse import __version__ setup( name='owsresponse', version=__version__, url='https://github.com/theorchard/python-owsresponse/', author='The Orchard', author_email='webdev@theorchard.com', description=( 'Standardize communication between the different layers of an ' 'application.'), packages=find_packages(), include_package_data=True, zip_safe=False, classifiers=[ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', ],)