From: Ira W. Snyder Date: Wed, 14 Feb 2007 04:40:50 +0000 (-0800) Subject: Adding python distutils-based setup. X-Git-Tag: v2.1.0~7 X-Git-Url: https://www.irasnyder.com/gitweb/?a=commitdiff_plain;h=fe27621c32fdc44621755206b25712844176543e;p=rarslave2.git Adding python distutils-based setup. Signed-off-by: Ira W. Snyder --- diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..64bffef --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# vim: set ts=8 sts=8 sw=8 textwidth=80: + +from distutils.core import setup + +setup ( + name='rarslave', + version='2.0.0', + url='http://www.irasnyder.com/devel/#rarslave', + description='Automatic PAR2 Verification and Extraction Tool', + author='Ira W. Snyder', + author_email='devel@irasnyder.com', + maintainer='Ira W. Snyder', + maintainer_email='devel@irasnyder.com', + license='GNU GPL v2', + long_description=""" +Rarslave is a program that will automatically check, repair, and extract files +which are protected by PAR2. The primary reason for its development was to +automate the tedious tasks necessary after downloading files from Usenet.""", + packages=['rsutil', 'PAR2Set'], + py_modules = ['RarslaveDetector'], + scripts=['rarslave.py'] + ) +