diff --git a/setup.py b/setup.py index 2cdef848b7..f7654c6139 100755 --- a/setup.py +++ b/setup.py @@ -105,7 +105,6 @@ SALT_VERSION = os.path.join(os.path.abspath(SETUP_DIRNAME), 'salt', 'version.py' SALT_VERSION_HARDCODED = os.path.join(os.path.abspath(SETUP_DIRNAME), 'salt', '_version.py') SALT_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), '_requirements.txt') SALT_ZEROMQ_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'zeromq-requirements.txt') -SALT_CLOUD_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'cloud-requirements.txt') SALT_RAET_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'raet-requirements.txt') # Salt SSH Packaging Detection @@ -738,8 +737,7 @@ class SaltDistribution(distutils.dist.Distribution): def _property_extras_require(self): if self.ssh_packaging: return {} - return {'RAET': _parse_requirements_file(SALT_RAET_REQS), - 'Cloud': _parse_requirements_file(SALT_CLOUD_REQS)} + return {'RAET': _parse_requirements_file(SALT_RAET_REQS)} @property def _property_scripts(self):