summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py2
-rw-r--r--setuptools/tests/test_resources.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index bef4f7d8..2935a9be 100755
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@ setup(
url = "http://peak.telecommunity.com/DevCenter/setuptools",
test_suite = 'setuptools.tests.test_suite',
packages = find_packages(),
- package_data = {'setuptools': ['launcher.exe']},
+ package_data = {'setuptools': ['*.exe']},
py_modules = ['pkg_resources', 'easy_install'],
zip_safe = False, # We want 'python -m easy_install' to work, for now :(
diff --git a/setuptools/tests/test_resources.py b/setuptools/tests/test_resources.py
index 5b9751f9..c36ad952 100644
--- a/setuptools/tests/test_resources.py
+++ b/setuptools/tests/test_resources.py
@@ -23,7 +23,7 @@ class DistroTests(TestCase):
def testCollection(self):
# empty path should produce no distributions
- ad = Environment([], python=None)
+ ad = Environment([], platform=None, python=None)
self.assertEqual(list(ad), [])
self.assertEqual(ad['FooPkg'],[])