From 07ad79ccd621f2b6e2aaf87c224e8605705798a3 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Tue, 1 Sep 2009 19:43:36 +0200 Subject: [PATCH] Setup fixes, with MANIFEST template --- MANIFEST.in | 1 + setup.py | 10 ++++------ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..66cf26b --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include COPYING NEWS TODO \ No newline at end of file diff --git a/setup.py b/setup.py index 2ff8d3a..3e1a220 100755 --- a/setup.py +++ b/setup.py @@ -2,9 +2,7 @@ # -*- coding: utf-8; indent-tabs-mode: nil; -*- # # This file is part of Radicale Server - Calendar Server -# Copyright © 2008-2009 Guillaume Ayoub -# Copyright © 2008 Nicolas Kandel -# Copyright © 2008 Pascal Halter +# Copyright © 2009 Guillaume Ayoub # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -29,7 +27,7 @@ class BuildScripts(build_scripts): def run(self): self.mkpath(self.build_dir) for script in self.scripts: - root, ext = os.path.splitext(script) + root, _ = os.path.splitext(script) self.copy_file(script, os.path.join(self.build_dir, root)) class Clean(Command): @@ -57,8 +55,8 @@ class Clean(Command): @staticmethod def _should_remove(filename): - return (os.path.splitext(filename) == ".pyc" or - os.path.splitext(filename) == ".pyo" or + return (os.path.splitext(filename)[1] == ".pyc" or + os.path.splitext(filename)[1] == ".pyo" or filename.endswith("~") or (filename.startswith("#") and filename.endswith("#")))