forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (48 loc) · 1.94 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------
from __future__ import print_function
import os.path
import glob
import copy
import sys
import runpy
root_folder = os.path.abspath(os.path.dirname(__file__))
packages = [os.path.dirname(p) for p in glob.glob('azure*/setup.py')]
# "install" is used by ReadTheDocs, do not install "nspkg"
# Extract nspkg and sort nspkg by number of "-"
nspkg_packages = [p for p in packages if "nspkg" in p]
nspkg_packages.sort(key = lambda x: len([c for c in x if c == '-']))
# Consider "azure-common" as a power nspkg : has to be installed first
nspkg_packages.append("azure-common")
# Manually push meta-packages at the end, in reverse dependency order
meta_package = ['azure-mgmt', 'azure']
# So content packages are:
content_package = [p for p in packages if p not in meta_package+nspkg_packages]
content_package.insert(0, "azure-common")
# Package final:
if "install" in sys.argv:
packages = content_package
elif "travis_deploy" in sys.argv:
from build_package import travis_build_package
sys.exit(travis_build_package())
else:
packages = nspkg_packages + content_package + meta_package
for pkg_name in packages:
pkg_setup_folder = os.path.join(root_folder, pkg_name)
pkg_setup_path = os.path.join(pkg_setup_folder, 'setup.py')
try:
saved_dir = os.getcwd()
saved_syspath = sys.path
os.chdir(pkg_setup_folder)
sys.path = [pkg_setup_folder] + copy.copy(saved_syspath)
print("Start ", pkg_setup_path)
result = runpy.run_path(pkg_setup_path)
except Exception as e:
print(e, file=sys.stderr)
finally:
os.chdir(saved_dir)
sys.path = saved_syspath