Skip to content

Commit

Permalink
Add CLI tool into setup routine
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusFreitag committed Sep 3, 2017
1 parent 29cf7fa commit c78bf6c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
install_requires=[
'click',
'cryptography',
'requests'
],
setup_requires=['nose>=1.0'],
tests_require=['mock==2.0.0']
tests_require=['mock==2.0.0'],
entry_points={
'console_scripts': ['kphttp-cli=keepasshttp.commands:cli'],
}
)

0 comments on commit c78bf6c

Please sign in to comment.