Skip to content

Commit

Permalink
Format setup.py for PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Endler committed Oct 30, 2015
1 parent 7f5484c commit 4b32f7a
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 4b32f7a

Please sign in to comment.