diff --git a/setup.py b/setup.py index f10d5f1..4d91954 100644 --- a/setup.py +++ b/setup.py @@ -14,33 +14,33 @@ def readme(): requires = [x.strip() for x in f if x.strip()] setup(name='kafka_influxdb', - version=__version__, - description='A Kafka consumer for InfluxDB', - long_description=readme(), - classifiers=[ - 'Development Status :: 4 - Beta', - 'License :: OSI Approved :: Apache Software License', - 'Topic :: Utilities', - "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.6", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: Implementation :: PyPy", - ], - keywords='kafka influxdb metrics consumer', - url='http://github.com/mre/kafka-influxdb', - author='Matthias Endler', - author_email='matthias-endler@gmx.net', - license='Apache', - packages=find_packages(), - install_requires=requires, - test_suite='nose.collector', - tests_require=['nose', 'nose-cover3'], - entry_points={ - 'console_scripts': ['kafka_influxdb=kafka_influxdb.kafka_influxdb:main'], - }, - include_package_data=True, - zip_safe=False) + version=__version__, + description='A Kafka consumer for InfluxDB', + long_description=readme(), + classifiers=[ + 'Development Status :: 4 - Beta', + 'License :: OSI Approved :: Apache Software License', + 'Topic :: Utilities', + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: Implementation :: PyPy", + ], + keywords='kafka influxdb metrics consumer', + url='http://github.com/mre/kafka-influxdb', + author='Matthias Endler', + author_email='matthias-endler@gmx.net', + license='Apache', + packages=find_packages(), + install_requires=requires, + test_suite='nose.collector', + tests_require=['nose', 'nose-cover3'], + entry_points={ + 'console_scripts': ['kafka_influxdb=kafka_influxdb.kafka_influxdb:main'], + }, + include_package_data=True, + zip_safe=False)