summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schweikert <rjschwei@suse.com>2016-11-09 15:41:18 -0500
committerMax Illfelder <illfelder@users.noreply.github.com>2016-11-09 12:41:18 -0800
commita33d244812a53c8c5ff974ce3225f4f540ad7e59 (patch)
tree6754b763f36405457ec5ad728ed4cec90e733830
parentf0b41755f2c5b01ea6e4bfb68941ddcd675f1fdd (diff)
downloadgoogle-compute-image-packages-a33d244812a53c8c5ff974ce3225f4f540ad7e59.tar.gz
Add Python package dependency on setuptools. (#352)
+ The setup.py file is used to generate scripts. The generated scripts create a runtime dependence on the setuptools, thus these must be installed on the target system where the code is supposed to run.
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c9adf14..26636a5 100755
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ setuptools.setup(
author_email='gc-team@google.com',
description='Google Compute Engine',
include_package_data=True,
- install_requires=['boto'],
+ install_requires=['boto', 'setuptools'],
license='Apache Software License',
long_description='Google Compute Engine guest environment.',
name='google-compute-engine',