From ad9b6ed28e02652c3866afc8ebd2999c1c67ca91 Mon Sep 17 00:00:00 2001 From: Joohwan Oh Date: Thu, 2 Nov 2017 02:47:15 -0700 Subject: [PATCH] Add license and tests_require in setup.py --- kq/version.py | 2 +- setup.py | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) 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',