Add sdist to Makefile & Cleanup setup.py syntax.
authorIra W. Snyder <devel@irasnyder.com>
Wed, 14 Feb 2007 04:45:57 +0000 (20:45 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Wed, 14 Feb 2007 04:45:57 +0000 (20:45 -0800)
Signed-off-by: Ira W. Snyder <devel@irasnyder.com>
Makefile
setup.py

index 74487a2..9016061 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -11,4 +11,7 @@ test:
 run: clean
        python rarslave.py
 
+sdist:
+       python setup.py sdist
+
 .PHONY: all clean test run
index 64bffef..c674f77 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ 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'],
+               py_modules=['RarslaveDetector'],
                scripts=['rarslave.py']
       )