from setuptools import setup, find_packages import os import estimevent CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development', 'Topic :: Software Development :: Libraries :: Application Frameworks', "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", ] setup( author="Webu", author_email="contact@webu.coop", name='estimevent', version=estimevent.__version__, description='ESTIM Event API', long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), url='https://dev.webu.coop/shared/estimevent', license='BSD License', platforms=['OS Independent'], classifiers=CLASSIFIERS, packages=find_packages(), include_package_data=True, zip_safe=False, test_suite="tests", )