Adding python distutils-based setup.
authorIra W. Snyder <devel@irasnyder.com>
Wed, 14 Feb 2007 04:40:50 +0000 (20:40 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Wed, 14 Feb 2007 04:40:50 +0000 (20:40 -0800)
Signed-off-by: Ira W. Snyder <devel@irasnyder.com>
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
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']
+      )
+