def main(target, requirements_file): project, endpoint, apikey = get_target(target) requirements_full_path = os.path.abspath(requirements_file) eggs_tmp_dir = _mk_and_cd_eggs_tmpdir() _download_egg_files(eggs_tmp_dir, requirements_full_path) decompress_egg_files() build_and_deploy_eggs(project, endpoint, apikey)
def main(project_id, requirements_file): apikey = find_api_key() requirements_full_path = os.path.abspath(requirements_file) eggs_tmp_dir = _mk_and_cd_eggs_tmpdir() _download_egg_files(eggs_tmp_dir, requirements_full_path) decompress_egg_files() utils.build_and_deploy_eggs(project_id, apikey)
def main(target, requirements_file): targetconf = get_target_conf(target) requirements_full_path = os.path.abspath(requirements_file) eggs_tmp_dir = _mk_and_cd_eggs_tmpdir() _download_egg_files(eggs_tmp_dir, requirements_full_path) decompress_egg_files() build_and_deploy_eggs(targetconf.project_id, targetconf.endpoint, targetconf.apikey)
def main(project_id, requirements_file): target = scrapycfg.get_target('default') project_id = scrapycfg.get_project(target, project_id) apikey = find_api_key() log('Deploying requirements to project "%s"' % project_id) requirements_full_path = os.path.abspath(requirements_file) eggs_tmp_dir = _mk_and_cd_eggs_tmpdir() _download_egg_files(eggs_tmp_dir, requirements_full_path) decompress_egg_files() utils.build_and_deploy_eggs(project_id, apikey)
def main(project_id, from_url=None, git_branch=None, from_pypi=None): apikey = find_api_key() if from_pypi: _fetch_from_pypi(from_pypi) decompress_egg_files() utils.build_and_deploy_eggs(project_id, apikey) return if from_url: _checkout(from_url, git_branch) if not os.path.isfile('setup.py'): error = "No setup.py -- are you running from a valid Python project?" fail(error) utils.build_and_deploy_egg(project_id, apikey)
def main(target, from_url=None, git_branch=None, from_pypi=None): project, endpoint, apikey = get_target(target) if from_pypi: _fetch_from_pypi(from_pypi) decompress_egg_files() utils.build_and_deploy_eggs(project, endpoint, apikey) return if from_url: _checkout(from_url, git_branch) if not os.path.isfile('setup.py'): error = "No setup.py -- are you running from a valid Python project?" raise NotFoundException(error) utils.build_and_deploy_egg(project, endpoint, apikey)
def main(target, from_url=None, git_branch=None, from_pypi=None): targetconf = get_target_conf(target) if from_pypi: _fetch_from_pypi(from_pypi) decompress_egg_files() utils.build_and_deploy_eggs(targetconf.project_id, targetconf.endpoint, targetconf.apikey) return if from_url: _checkout(from_url, git_branch) if not os.path.isfile('setup.py'): error = "No setup.py -- are you running from a valid Python project?" raise NotFoundException(error) utils.build_and_deploy_egg(targetconf.project_id, targetconf.endpoint, targetconf.apikey)