Skip to content

Commit

Permalink
Add license and tests_require in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
joowani committed Nov 2, 2017
1 parent f722688 commit ad9b6ed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kq/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.3.0'
VERSION = '1.3.1'
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit ad9b6ed

Please sign in to comment.