aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 2ccf260e..b9b50838 100755
--- a/setup.py
+++ b/setup.py
@@ -15,10 +15,13 @@ def get_description():
f.close()
return ''.join(lines)
+from distutils.util import convert_path
+d = {}; execfile(convert_path('setuptools/command/__init__.py'), d)
+SETUP_COMMANDS = d['__all__']
+
VERSION = "0.6a9"
from setuptools import setup, find_packages
import sys
-from setuptools.command import __all__ as SETUP_COMMANDS
scripts = []
if sys.platform != "win32":
scripts = ["easy_install.py"] # for backward compatibility only
@@ -35,8 +38,9 @@ setup(
keywords = "CPAN PyPI distutils eggs package management",
url = "http://peak.telecommunity.com/DevCenter/setuptools",
test_suite = 'setuptools.tests.test_suite',
+
packages = find_packages(),
- include_package_data = True,
+ package_data = {'setuptools':'*.exe'},
py_modules = ['pkg_resources', 'easy_install', 'site'],
zip_safe = False, # We want 'python -m easy_install' to work, for now :(
@@ -76,10 +80,6 @@ setup(
-
-
-
-
classifiers = [f.strip() for f in """
Development Status :: 3 - Alpha
Intended Audience :: Developers