aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-16 06:05:16 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-03-16 06:05:16 -0400
commit3940c139f3082bef33c52cec4a8a0f6484bef202 (patch)
tree0c3194414c650b00a0620d1e7a14614cb6779929 /setup.py
parentf3d4f9b46f12bfc56daaa924e6fec5ab4c966b11 (diff)
downloadexternal_python_setuptools-3940c139f3082bef33c52cec4a8a0f6484bef202.tar.gz
external_python_setuptools-3940c139f3082bef33c52cec4a8a0f6484bef202.tar.bz2
external_python_setuptools-3940c139f3082bef33c52cec4a8a0f6484bef202.zip
Update setuptools setup.py to work with setuptools 4.04.0b1
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3d5307d5..13736be5 100755
--- a/setup.py
+++ b/setup.py
@@ -116,7 +116,10 @@ setup_params = dict(
url = "https://pypi.python.org/pypi/setuptools",
test_suite = 'setuptools.tests',
src_root = src_root,
- packages = setuptools.find_packages(),
+ packages = setuptools.find_packages(
+ include=['setuptools*', '_markerlib'],
+ exclude=['setuptools.tests*.*'],
+ ),
package_data = package_data,
py_modules = ['pkg_resources', 'easy_install'],