From 781f12c0486772e2e9573d28b0ef2bf59e0c0285 Mon Sep 17 00:00:00 2001 From: Vadim Kravcenko Date: Wed, 22 Apr 2015 20:28:06 +0200 Subject: [PATCH] add requirements --- requirements.txt | 3 ++- setup.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0f586ae..959d1b7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ wheel==0.23.0 -Yarg==0.1.9 \ No newline at end of file +Yarg==0.1.9 +docopt==0.6.2 \ No newline at end of file diff --git a/setup.py b/setup.py index 05b805c..9d325a1 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', '') requirements = [ - + 'docopt', 'yarg' ] test_requirements = [ @@ -25,7 +25,7 @@ test_requirements = [ setup( name='pipreqs', version='0.1.1', - description="Pip Requirements generator based on imports in project", + description="Pip requirements.txt generator based on imports in project", long_description=readme + '\n\n' + history, author="Vadim Kravcenko", author_email='vadim.kravcenko@gmail.com', @@ -56,7 +56,7 @@ setup( tests_require=test_requirements, entry_points={ 'console_scripts': [ - 'pipreqs = pipreqs.pipreqs:main', + 'pipreqs=pipreqs.pipreqs:main', ], }, )