From 02f8c15d2b56b556eb11e0f524cf3b3135cfa612 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 29 Jan 2010 11:22:22 +0000 Subject: [PATCH] Breaking down tvorganise.py into modular parts --- setup.py | 6 ++---- tvorganise.py => tvorganise/__init__.py | 0 2 files changed, 2 insertions(+), 4 deletions(-) rename tvorganise.py => tvorganise/__init__.py (100%) diff --git a/setup.py b/setup.py index 227078a..cf6bdb2 100755 --- a/setup.py +++ b/setup.py @@ -11,11 +11,9 @@ description='Utilities to verify TV episode filenames and move them into a organ url='http://github.com/dbr/checktveps/tree/master', license='GPLv2', -py_modules = [ 'tvorganise'], +py_modules = ['tvorganise'], entry_points = { - 'console_scripts':[ - 'tvorganise = tvorganise:main' - ] + 'console_scripts':['tvorganise = tvorganise:main'] }, classifiers=[ diff --git a/tvorganise.py b/tvorganise/__init__.py similarity index 100% rename from tvorganise.py rename to tvorganise/__init__.py