From b925d8a70902d828b4ad45d32643b0012f50c332 Mon Sep 17 00:00:00 2001 From: dbr Date: Mon, 29 Dec 2008 17:01:09 +1030 Subject: [PATCH] Added inital setup.py file --- setup.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..bb8cbb5 --- /dev/null +++ b/setup.py @@ -0,0 +1,30 @@ +from setuptools import setup, find_packages +setup( +name = 'checkTvEps', +version='0.1', + +author='dbr/Ben', +description='A collection of utilties to verify TV episodes match a naming scheme', +url='http://github.com/dbr/checktveps/tree/master', +license='GPLv2', + +py_modules = ['filename_config', 'checkTvEps', 'checkFilms', 'autoPathTv'], +entry_points = { + 'console_scripts':[ + 'checkTvEps = checkTvEps:main', + 'checkFilms = checkFilms:main', + 'autoPathTv = autoPathTv:main' + ] +}, + +classifiers=[ + "Environment :: Console", + "Intended Audience :: End Users/Desktop", + "License :: OSI Approved :: GNU General Public License (GPL)", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Topic :: Multimedia", + "Topic :: Utilities" +] +) \ No newline at end of file