Print a traceback on unknown exceptions
[rarslave2.git] / setup.py
1 #!/usr/bin/env python
2 # vim: set ts=4 sts=4 sw=4 textwidth=80:
3
4 from distutils.core import setup
5
6 from rarslave import PROGRAM
7 from rarslave import VERSION
8
9 setup (
10                 name=PROGRAM,
11                 version=VERSION,
12                 url='http://www.irasnyder.com/devel/#rarslave',
13                 description='Automatic PAR2 Verification and Extraction Tool',
14                 author='Ira W. Snyder',
15                 author_email='devel@irasnyder.com',
16                 maintainer='Ira W. Snyder',
17                 maintainer_email='devel@irasnyder.com',
18                 license='GNU GPL v2',
19                 long_description="""
20 Rarslave is a program that will automatically check, repair, and extract files
21 which are protected by PAR2. The primary reason for its development was to
22 automate the tedious tasks necessary after downloading files from Usenet.""",
23                 packages=['PAR2Set'],
24                 scripts=['rarslave.py']
25       )
26