diff --git a/kq/version.py b/kq/version.py index 9e23359..d0e714d 100644 --- a/kq/version.py +++ b/kq/version.py @@ -1 +1 @@ -VERSION = '1.3.0' +VERSION = '1.3.1' diff --git a/setup.py b/setup.py index 1bbcc47..6470631 100644 --- a/setup.py +++ b/setup.py @@ -13,16 +13,18 @@ url='https://github.com/joowani/kq', packages=find_packages(), include_package_data=True, - install_requires=[ - 'dill>=0.2.5', - 'docopt>=0.6.2', - 'kafka-python>=1.3.1' - ], + license='MIT', entry_points={ 'console_scripts': [ 'kq = kq.cli:entry_point', ], }, + install_requires=[ + 'dill>=0.2.5', + 'docopt>=0.6.2', + 'kafka-python>=1.3.1' + ], + tests_require=['pytest'], classifiers=[ 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop',