From e540b571dac97dd416b8855eede6cd28e5f9d5e1 Mon Sep 17 00:00:00 2001 From: Masood Malekghassemi Date: Thu, 14 Jan 2016 15:00:34 -0800 Subject: [PATCH] Remove trailing directory-name slashes in setup.py Python on Windows inexplicably chokes on trailing slashes. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b70fab33987..4012397800d 100644 --- a/setup.py +++ b/setup.py @@ -42,8 +42,8 @@ from setuptools.command import egg_info # Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in. egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in' -PYTHON_STEM = './src/python/grpcio/' -CORE_INCLUDE = ('./include', './',) +PYTHON_STEM = './src/python/grpcio' +CORE_INCLUDE = ('./include', '.',) BORINGSSL_INCLUDE = ('./third_party/boringssl/include',) # Ensure we're in the proper directory whether or not we're being used by pip.