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