Skip to content

Commit

Permalink
setup.py now uses setuptools in version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
darko3 committed Mar 19, 2017
1 parent 04cb099 commit cb98680
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion batch-rename.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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',
Expand Down

0 comments on commit cb98680

Please sign in to comment.