From fe27621c32fdc44621755206b25712844176543e Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Tue, 13 Feb 2007 20:40:50 -0800 Subject: [PATCH] Adding python distutils-based setup. Signed-off-by: Ira W. Snyder --- setup.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 setup.py 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'] + ) + -- 2.25.1