Added console entry 'sweeper'.
This commit is contained in:
parent
5d23ac53a3
commit
f3ef66fcb3
3 changed files with 11 additions and 2 deletions
|
@ -34,6 +34,10 @@ As script::
|
|||
|
||||
python sweeper.py --help
|
||||
|
||||
As installed console script::
|
||||
|
||||
sweeper --help
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
|
|
7
setup.py
7
setup.py
|
@ -6,7 +6,7 @@ def read(fname):
|
|||
|
||||
setup(
|
||||
name='sweeper',
|
||||
version='0.1.0',
|
||||
version='0.2.0',
|
||||
author='Darko Poljak',
|
||||
author_email='darko.poljak@gmail.com',
|
||||
description='Find duplicate files and perform action.',
|
||||
|
@ -15,6 +15,11 @@ setup(
|
|||
url='https://github.com/darko-poljak/sweeper',
|
||||
download_url='https://github.com/darko-poljak/sweeper',
|
||||
packages=['sweeper'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'sweeper=sweeper.sweeper:main',
|
||||
],
|
||||
},
|
||||
long_description=read('README.rst'),
|
||||
platforms="OS Independent",
|
||||
install_requires=["docopt"],
|
||||
|
|
|
@ -21,7 +21,7 @@ Options:
|
|||
"""
|
||||
|
||||
__author__ = 'Darko Poljak <darko.poljak@gmail.com>'
|
||||
__version__ = '0.1.0'
|
||||
__version__ = '0.2.0'
|
||||
__license__ = 'GPLv3'
|
||||
|
||||
__all__ = [
|
||||
|
|
Loading…
Reference in a new issue