From f0eeeb3d35202976f8e940552831872e1129066b Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Tue, 13 Feb 2007 20:45:57 -0800 Subject: [PATCH] Add sdist to Makefile & Cleanup setup.py syntax. Signed-off-by: Ira W. Snyder --- Makefile | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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'] ) -- 2.25.1