From cfdd8b9c6c9a0fc0bb0d332dd034330a37ea5a1f Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 20 Sep 2009 20:44:52 -0400 Subject: Clean up setup.py from the other py3k experiments. --- setup.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 5e815a8..5440e57 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ Topic :: Software Development :: Testing """ # Pull in the tools we need. -import os, sys +import sys if sys.hexversion < 0x03000000: # In Py 2.x, use setuptools. @@ -35,8 +35,6 @@ if sys.hexversion < 0x03000000: from distutils.core import Extension package_name = 'coverage' - # The 2.x sources are in coverage - coverage_dir = "coverage" more_setup_args = dict( entry_points = { @@ -53,8 +51,6 @@ else: from distutils.core import setup, Extension package_name = 'coverage3k' - # The 3.x sources are in coverage - coverage_dir = "coverage" more_setup_args = dict( scripts = [ @@ -89,10 +85,6 @@ setup( 'coverage', ], - package_dir = { - 'coverage': coverage_dir, - }, - package_data = { 'coverage': [ 'htmlfiles/*.*', -- cgit v1.2.1