From: Ira W. Snyder Date: Wed, 14 Feb 2007 04:45:57 +0000 (-0800) Subject: Add sdist to Makefile & Cleanup setup.py syntax. X-Git-Tag: v2.1.0~6 X-Git-Url: https://www.irasnyder.com/gitweb/?a=commitdiff_plain;h=f0eeeb3d35202976f8e940552831872e1129066b;p=rarslave2.git Add sdist to Makefile & Cleanup setup.py syntax. Signed-off-by: Ira W. Snyder --- diff --git a/Makefile b/Makefile index 74487a2..9016061 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,7 @@ test: run: clean python rarslave.py +sdist: + python setup.py sdist + .PHONY: all clean test run diff --git a/setup.py b/setup.py index 64bffef..c674f77 100644 --- 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'] )