--- /dev/null
+#!/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']
+ )
+