diff --git a/batch-rename.py b/batch-rename.py index 6d2796c..833bc71 100755 --- a/batch-rename.py +++ b/batch-rename.py @@ -43,7 +43,7 @@ from batch_renamer_cli import sort_by_name -version = '1.0.5' +version = '1.0.6' github_project_page = TextType.bold + TextColor.green + 'https://github.com/darko3/batch-renamer' + TextColor.white usage = """ Batch File Renamer %s - (C) 2017 Girish Oemrawsingh diff --git a/setup.py b/setup.py index 1c93ff1..c5477d1 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import os import shutil -from distutils.core import setup +from setuptools import setup if not os.path.exists('scripts'): os.makedirs('scripts') @@ -14,11 +14,12 @@ setup( name='batch-rename', - version='1.0.5', + version='1.0.6', packages=['batch_renamer_cli'], scripts=['scripts/batch-rename'], + install_requires=['colorama'], url='https://github.com/darko3/batch-renamer', - download_url='https://github.com/darko3/batch-renamer/archive/1.0.5.tar.gz', + download_url='https://github.com/darko3/batch-renamer/archive/1.0.6.tar.gz', keywords=['batch-renamer', 'files', 'python'], license='MIT', author='Girish Oemrawsingh',