setup.py.in 22.1 KB
Newer Older
Y
Yancey 已提交
1
import subprocess
2
import os
3
import os.path
4
import errno
5
import re
6
import shutil
7
import sys
8
import fnmatch
C
Chengmo 已提交
9
import errno
10
import platform
11

12
from contextlib import contextmanager
13 14 15 16 17
from setuptools import Command
from setuptools import setup, Distribution, Extension
from setuptools.command.install import install as InstallCommandBase


18 19 20
class BinaryDistribution(Distribution):
    def has_ext_modules(foo):
        return True
Z
zhangjinchao01 已提交
21

Y
Yancey 已提交
22 23
RC      = 0

24
ext_name = '.dll' if os.name == 'nt' else ('.dylib' if sys.platform == 'darwin' else '.so')
Y
Yancey 已提交
25 26 27 28

def git_commit():
    try:
        cmd = ['git', 'rev-parse', 'HEAD']
29 30
        git_commit = subprocess.Popen(cmd, stdout = subprocess.PIPE,
            cwd="@PADDLE_SOURCE_DIR@").communicate()[0].strip()
Y
Yancey 已提交
31 32
    except:
        git_commit = 'Unknown'
33
    git_commit = git_commit.decode()
34
    return str(git_commit)
Y
Yancey 已提交
35

36
def _get_version_detail(idx):
37 38
    assert idx < 3, "vesion info consists of %(major)d.%(minor)d.%(patch)d, \
        so detail index must less than 3"
39

M
minqiyang 已提交
40 41
    if re.match('@TAG_VERSION_REGEX@', '@PADDLE_VERSION@'):
        version_details = '@PADDLE_VERSION@'.split('.')
42

M
minqiyang 已提交
43
        if len(version_details) >= 3:
M
minqiyang 已提交
44
            return version_details[idx]
45

46
    return 0
47

M
minqiyang 已提交
48
def get_major():
49
    return int(_get_version_detail(0))
50

M
minqiyang 已提交
51
def get_minor():
52
    return int(_get_version_detail(1))
53

54
def get_patch():
55
    return str(_get_version_detail(2))
56 57

def is_taged():
M
minqiyang 已提交
58
    try:
59
        cmd = ['git', 'describe', '--exact-match', '--tags', 'HEAD', '2>/dev/null']
60
        git_tag = subprocess.Popen(cmd, stdout = subprocess.PIPE, cwd="@PADDLE_SOURCE_DIR@").communicate()[0].strip()
61
        git_tag = git_tag.decode()
M
minqiyang 已提交
62
    except:
63 64
        return False

65
    if str(git_tag).replace('v', '') == '@PADDLE_VERSION@':
66 67
        return True
    else:
M
minqiyang 已提交
68
        return False
69

Y
Yancey 已提交
70
def write_version_py(filename='paddle/version.py'):
71
    cnt = '''# THIS FILE IS GENERATED FROM PADDLEPADDLE SETUP.PY
Y
Yancey 已提交
72
#
73
full_version    = '%(major)d.%(minor)d.%(patch)s'
Y
Yancey 已提交
74 75
major           = '%(major)d'
minor           = '%(minor)d'
76
patch           = '%(patch)s'
Y
Yancey 已提交
77 78 79
rc              = '%(rc)d'
istaged         = %(istaged)s
commit          = '%(commit)s'
L
Luo Tao 已提交
80
with_mkl        = '%(with_mkl)s'
Y
Yancey 已提交
81 82 83

def show():
    if istaged:
84 85 86 87 88
        print('full_version:', full_version)
        print('major:', major)
        print('minor:', minor)
        print('patch:', patch)
        print('rc:', rc)
Y
Yancey 已提交
89
    else:
90
        print('commit:', commit)
L
Luo Tao 已提交
91 92 93

def mkl():
    return with_mkl
Y
Yancey 已提交
94 95 96 97
'''
    commit = git_commit()
    with open(filename, 'w') as f:
        f.write(cnt % {
98 99 100
            'major': get_major(),
            'minor': get_minor(),
            'patch': get_patch(),
Y
Yancey 已提交
101 102 103
            'rc': RC,
            'version': '${PADDLE_VERSION}',
            'commit': commit,
104
            'istaged': is_taged(),
L
Luo Tao 已提交
105
            'with_mkl': '@WITH_MKL@'})
Y
Yancey 已提交
106

107
write_version_py(filename='@PADDLE_BINARY_DIR@/python/paddle/version.py')
Y
Yancey 已提交
108

109 110 111 112 113 114 115 116 117 118 119 120 121 122
def write_cuda_env_config_py(filename='paddle/cuda_env.py'):
    cnt = ""
    if '${JIT_RELEASE_WHL}' == 'ON':
        cnt = '''# THIS FILE IS GENERATED FROM PADDLEPADDLE SETUP.PY
#
import os
os.environ['CUDA_CACHE_MAXSIZE'] = '805306368'
'''

    with open(filename, 'w') as f:
        f.write(cnt)

write_cuda_env_config_py(filename='@PADDLE_BINARY_DIR@/python/paddle/cuda_env.py')

C
Chengmo 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
def write_distributed_training_mode_py(filename='paddle/fluid/incubate/fleet/parameter_server/version.py'):
    cnt = '''from __future__ import print_function

# THIS FILE IS GENERATED FROM PADDLEPADDLE SETUP.PY

from paddle.fluid.incubate.fleet.base.mode import Mode

BUILD_MODE=Mode.%(mode)s

def is_transpiler():
    return Mode.TRANSPILER == BUILD_MODE

'''

    dirname = os.path.dirname(filename)

    try:
        os.makedirs(dirname)
    except OSError as e:
        if e.errno != errno.EEXIST:
            raise

    with open(filename, 'w') as f:
        f.write(cnt % {
            'mode': 'PSLIB' if '${WITH_PSLIB}' == 'ON' else 'TRANSPILER'
        })

write_distributed_training_mode_py(filename='@PADDLE_BINARY_DIR@/python/paddle/fluid/incubate/fleet/parameter_server/version.py')
Y
Yancey 已提交
151

152

Z
zhangjinchao01 已提交
153
packages=['paddle',
154
          'paddle.libs',
Q
qiaolongfei 已提交
155
          'paddle.utils',
156
          'paddle.utils.gast',
157
          'paddle.utils.cpp_extension',
158 159
          'paddle.dataset',
          'paddle.reader',
160
          'paddle.distributed',
161
          'paddle.incubate',
162
          'paddle.incubate.optimizer',
163
          'paddle.incubate.checkpoint',
164
          'paddle.incubate.operators',
165
          'paddle.incubate.tensor',
166
          'paddle.incubate.nn',
167 168
          'paddle.distributed.fleet',
          'paddle.distributed.fleet.base',
K
kuizhiqing 已提交
169
          'paddle.distributed.fleet.elastic',
170
          'paddle.distributed.fleet.meta_optimizers',
171
          'paddle.distributed.fleet.meta_optimizers.sharding',
172
          'paddle.distributed.fleet.meta_optimizers.ascend',
173
          'paddle.distributed.fleet.meta_optimizers.dygraph_optimizer',
174 175
          'paddle.distributed.fleet.runtime',
          'paddle.distributed.fleet.dataset',
176
          'paddle.distributed.fleet.data_generator',
177 178 179
          'paddle.distributed.fleet.metrics',
          'paddle.distributed.fleet.proto',
          'paddle.distributed.fleet.utils',
180
          'paddle.distributed.fleet.meta_parallel',
181
          'paddle.distributed.fleet.meta_parallel.pp_utils',
182
          'paddle.distributed.fleet.meta_parallel.parallel_layers',
183
          'paddle.distributed.auto_parallel',
184
          'paddle.distributed.auto_parallel.operators',
185
          'paddle.framework',
186
          'paddle.jit',
187
          'paddle.jit.dy2static',
W
Wilber 已提交
188
          'paddle.inference',
189 190
          'paddle.inference.contrib',
          'paddle.inference.contrib.utils',
191
          'paddle.fluid',
W
Wilber 已提交
192
          'paddle.fluid.inference',
L
lujun 已提交
193
          'paddle.fluid.dygraph',
194
          'paddle.fluid.dygraph.dygraph_to_static',
195
          'paddle.fluid.dygraph.amp',
196
          'paddle.fluid.proto',
X
Xin Pan 已提交
197
          'paddle.fluid.proto.profiler',
H
heqiaozhi 已提交
198
          'paddle.fluid.distributed',
Y
Yancey 已提交
199
          'paddle.fluid.layers',
200
          'paddle.fluid.dataloader',
Q
Qingsheng Li 已提交
201 202
          'paddle.fluid.contrib',
          'paddle.fluid.contrib.decoder',
D
Dang Qingqing 已提交
203
          'paddle.fluid.contrib.quantize',
W
whs 已提交
204
          'paddle.fluid.contrib.slim',
W
WangZhen 已提交
205
          'paddle.fluid.contrib.slim.quantization',
206
          'paddle.fluid.contrib.slim.quantization.imperative',
C
chengduo 已提交
207
          'paddle.fluid.contrib.extend_optimizer',
208
          'paddle.fluid.contrib.mixed_precision',
209
          'paddle.fluid.contrib.mixed_precision.bf16',
210
          'paddle.fluid.contrib.layers',
211
          'paddle.fluid.contrib.sparsity',
Q
qiaolongfei 已提交
212
          'paddle.fluid.transpiler',
D
dongdaxiang 已提交
213 214
          'paddle.fluid.transpiler.details',
          'paddle.fluid.incubate',
215
          'paddle.fluid.incubate.data_generator',
D
dongdaxiang 已提交
216
          'paddle.fluid.incubate.fleet',
217
          'paddle.fluid.incubate.checkpoint',
D
dongdaxiang 已提交
218 219
          'paddle.fluid.incubate.fleet.base',
          'paddle.fluid.incubate.fleet.parameter_server',
T
tangwei12 已提交
220
          'paddle.fluid.incubate.fleet.parameter_server.distribute_transpiler',
221
          'paddle.fluid.incubate.fleet.parameter_server.pslib',
222
          'paddle.fluid.incubate.fleet.parameter_server.ir',
223
          'paddle.fluid.incubate.fleet.collective',
224
          'paddle.fluid.incubate.fleet.utils',
225
          'paddle.amp',
226 227 228 229 230 231 232
          'paddle.hapi',
          'paddle.vision',
          'paddle.vision.models',
          'paddle.vision.transforms',
          'paddle.vision.datasets',
          'paddle.text',
          'paddle.text.datasets',
H
hong 已提交
233
          'paddle.incubate',
234 235 236
          'paddle.incubate.nn',
          'paddle.incubate.nn.functional',
          'paddle.incubate.nn.layer',
237
          'paddle.io',
H
hong 已提交
238
          'paddle.optimizer',
239 240
          'paddle.nn',
          'paddle.nn.functional',
241
          'paddle.nn.layer',
242
          'paddle.nn.quant',
H
hong 已提交
243
          'paddle.nn.initializer',
244
          'paddle.nn.utils',
H
hong 已提交
245
          'paddle.metric',
246 247
          'paddle.static',
          'paddle.static.nn',
248
          'paddle.static.amp',
249
          'paddle.tensor',
C
channings 已提交
250
          'paddle.onnx',
251
          'paddle.autograd',
252 253
          'paddle.device',
          'paddle.device.cuda',
254
          ]
L
Luo Tao 已提交
255

256 257
with open('@PADDLE_SOURCE_DIR@/python/requirements.txt') as f:
    setup_requires = f.read().splitlines()
258

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
# Note(wangzhongpu):
# When compiling paddle under python36, the dependencies belonging to python2.7 will be imported, resulting in errors when installing paddle
if sys.version_info >= (3,6) and sys.version_info < (3,7):
    setup_requires_tmp = []
    for setup_requires_i in setup_requires:
        if "<\"3.6\"" in setup_requires_i or "<\"3.5\"" in setup_requires_i or "<=\"3.5\"" in setup_requires_i:
            continue
        setup_requires_tmp+=[setup_requires_i]
    setup_requires = setup_requires_tmp
if sys.version_info >= (3,5) and sys.version_info < (3,6):
    setup_requires_tmp = []
    for setup_requires_i in setup_requires:
        if "<\"3.5\"" in setup_requires_i:
            continue
        setup_requires_tmp+=[setup_requires_i]
    setup_requires = setup_requires_tmp
if sys.version_info >= (3,7):
    setup_requires_tmp = []
    for setup_requires_i in setup_requires:
        if "<\"3.6\"" in setup_requires_i or "<=\"3.6\"" in setup_requires_i or "<\"3.5\"" in setup_requires_i or "<=\"3.5\"" in setup_requires_i or "<\"3.7\"" in setup_requires_i:
            continue
        setup_requires_tmp+=[setup_requires_i]
    setup_requires = setup_requires_tmp

283
# the prefix is sys.prefix which should always be usr
L
Luo Tao 已提交
284
paddle_bins = ''
285

T
Tao Luo 已提交
286 287
if not '${WIN32}':
    paddle_bins = ['${PADDLE_BINARY_DIR}/paddle/scripts/paddle']
288 289 290 291 292 293

if os.name != 'nt':
    package_data={'paddle.fluid': ['${FLUID_CORE_NAME}' + '.so']}
else:
    package_data={'paddle.fluid': ['${FLUID_CORE_NAME}' + '.pyd', '${FLUID_CORE_NAME}' + '.lib']}

294
if '${HAS_NOAVX_CORE}' == 'ON':
295
    package_data['paddle.fluid'] += ['core_noavx' + ('.so' if os.name != 'nt' else '.pyd')]
P
peizhilin 已提交
296

L
Luo Tao 已提交
297
package_dir={
298
    '': '${PADDLE_BINARY_DIR}/python',
L
Luo Tao 已提交
299 300 301 302
    # The paddle.fluid.proto will be generated while compiling.
    # So that package points to other directory.
    'paddle.fluid.proto.profiler': '${PADDLE_BINARY_DIR}/paddle/fluid/platform',
    'paddle.fluid.proto': '${PADDLE_BINARY_DIR}/paddle/fluid/framework',
Q
qiaolongfei 已提交
303
    'paddle.fluid': '${PADDLE_BINARY_DIR}/python/paddle/fluid',
L
Luo Tao 已提交
304
}
305

306 307
# put all thirdparty libraries in paddle.libs
libs_path='${PADDLE_BINARY_DIR}/python/paddle/libs'
P
peizhilin 已提交
308

P
peizhilin 已提交
309
package_data['paddle.libs']= []
P
peizhilin 已提交
310
package_data['paddle.libs']=[('libwarpctc' if os.name != 'nt' else 'warpctc') + ext_name]
P
peizhilin 已提交
311
shutil.copy('${WARPCTC_LIBRARIES}', libs_path)
P
peizhilin 已提交
312

313 314 315 316 317 318 319 320 321 322 323 324 325
package_data['paddle.libs']+=[
    os.path.basename('${LAPACK_LIB}'), 
    os.path.basename('${BLAS_LIB}'),
    os.path.basename('${GFORTRAN_LIB}'),
    os.path.basename('${GNU_RT_LIB_1}')]
shutil.copy('${BLAS_LIB}', libs_path)
shutil.copy('${LAPACK_LIB}', libs_path)
shutil.copy('${GFORTRAN_LIB}', libs_path)
shutil.copy('${GNU_RT_LIB_1}', libs_path)
if not sys.platform.startswith("linux"):
    package_data['paddle.libs']+=[os.path.basename('${GNU_RT_LIB_2}')]
    shutil.copy('${GNU_RT_LIB_2}', libs_path)

326
if '${WITH_MKL}' == 'ON':
P
peizhilin 已提交
327 328 329
    shutil.copy('${MKLML_SHARED_LIB}', libs_path)
    shutil.copy('${MKLML_SHARED_IOMP_LIB}', libs_path)
    package_data['paddle.libs']+=[('libmklml_intel' if os.name != 'nt' else 'mklml') + ext_name, ('libiomp5' if os.name != 'nt' else 'libiomp5md') + ext_name]
P
peizhilin 已提交
330 331
else:
    if os.name == 'nt':
P
peizhilin 已提交
332
        # copy the openblas.dll
333
        shutil.copy('${OPENBLAS_SHARED_LIB}', libs_path)
P
peizhilin 已提交
334
        package_data['paddle.libs'] += ['openblas' + ext_name]
W
Wilber 已提交
335
    elif os.name == 'posix' and platform.machine() == 'aarch64' and '${OPENBLAS_LIB}'.endswith('so'):
H
houj04 已提交
336 337
        # copy the libopenblas.so on linux+aarch64
        # special: core_noavx.so depends on 'libopenblas.so.0', not 'libopenblas.so'
W
Wilber 已提交
338 339 340
        if os.path.exists('${OPENBLAS_LIB}' + '.0'):
            shutil.copy('${OPENBLAS_LIB}' + '.0', libs_path)
            package_data['paddle.libs'] += ['libopenblas.so.0']
P
peizhilin 已提交
341

342 343 344
if '${WITH_LITE}' == 'ON':
    shutil.copy('${LITE_SHARED_LIB}', libs_path)
    package_data['paddle.libs']+=['libpaddle_full_api_shared' + ext_name]
345 346 347 348 349 350
    if '${LITE_WITH_NNADAPTER}' == 'ON':
        shutil.copy('${LITE_NNADAPTER_LIB}', libs_path)
        package_data['paddle.libs']+=['libnnadapter' + ext_name]
        if '${NNADAPTER_WITH_HUAWEI_ASCEND_NPU}' == 'ON':
            shutil.copy('${LITE_NNADAPTER_NPU_LIB}', libs_path)
            package_data['paddle.libs']+=['libnnadapter_driver_huawei_ascend_npu' + ext_name]
351

X
xujiaqi01 已提交
352 353
if '${WITH_PSLIB}' == 'ON':
    shutil.copy('${PSLIB_LIB}', libs_path)
X
xujiaqi01 已提交
354 355
    if os.path.exists('${PSLIB_VERSION_PY}'):
        shutil.copy('${PSLIB_VERSION_PY}', '${PADDLE_BINARY_DIR}/python/paddle/fluid/incubate/fleet/parameter_server/pslib/')
X
xujiaqi01 已提交
356 357
    package_data['paddle.libs'] += ['libps' + ext_name]

S
Sang Ik Lee 已提交
358
if '${WITH_MKLDNN}' == 'ON':
P
peizhilin 已提交
359
    if '${CMAKE_BUILD_TYPE}' == 'Release' and os.name != 'nt':
P
peizhilin 已提交
360 361 362 363
        # only change rpath in Release mode.
        # TODO(typhoonzero): use install_name_tool to patch mkl libs once
        # we can support mkl on mac.
        #
A
Adam 已提交
364
        # change rpath of libdnnl.so.1, add $ORIGIN/ to it.
P
peizhilin 已提交
365
        # The reason is that all thirdparty libraries in the same directory,
A
Adam 已提交
366
        # thus, libdnnl.so.1 will find libmklml_intel.so and libiomp5.so.
P
peizhilin 已提交
367 368
        command = "patchelf --set-rpath '$ORIGIN/' ${MKLDNN_SHARED_LIB}"
        if os.system(command) != 0:
A
Adam 已提交
369
            raise Exception("patch libdnnl.so failed, command: %s" % command)
S
Sang Ik Lee 已提交
370
    shutil.copy('${MKLDNN_SHARED_LIB}', libs_path)
A
Adam 已提交
371 372
    if os.name != 'nt':
        shutil.copy('${MKLDNN_SHARED_LIB_1}', libs_path)
373 374
        shutil.copy('${MKLDNN_SHARED_LIB_2}', libs_path)
        package_data['paddle.libs']+=['libmkldnn.so.0', 'libdnnl.so.1', 'libdnnl.so.2']
A
Adam 已提交
375 376 377
    else:
        package_data['paddle.libs']+=['mkldnn.dll']

378 379 380 381 382 383 384 385 386 387 388 389 390
if '${WITH_XPU}' == 'ON':
    # only change rpath in Release mode,
    if '${CMAKE_BUILD_TYPE}' == 'Release':
        if os.name != 'nt':
            if "@APPLE@" == "1":
                command = "install_name_tool -id \"@loader_path/\" ${XPU_API_LIB}"
            else:
                command = "patchelf --set-rpath '$ORIGIN/' ${XPU_API_LIB}"
            if os.system(command) != 0:
                raise Exception("patch ${XPU_API_LIB} failed, command: %s" % command)
    shutil.copy('${XPU_API_LIB}', libs_path)
    shutil.copy('${XPU_RT_LIB}', libs_path)
    package_data['paddle.libs']+=['${XPU_API_LIB_NAME}',
391
                                  '${XPU_RT_LIB_NAME}']
392

393 394 395 396
if '${WITH_XPU_BKCL}' == 'ON':
    shutil.copy('${XPU_BKCL_LIB}', libs_path)
    package_data['paddle.libs']+=['${XPU_BKCL_LIB_NAME}']

397
# remove unused paddle/libs/__init__.py
P
peizhilin 已提交
398 399
if os.path.isfile(libs_path+'/__init__.py'):
    os.remove(libs_path+'/__init__.py')
400 401
package_dir['paddle.libs']=libs_path

402

403
# change rpath of ${FLUID_CORE_NAME}.ext, add $ORIGIN/../libs/ to it.
404
# The reason is that libwarpctc.ext, libiomp5.ext etc are in paddle.libs, and
405
# ${FLUID_CORE_NAME}.ext is in paddle.fluid, thus paddle/fluid/../libs will pointer to above libraries.
406
# This operation will fix https://github.com/PaddlePaddle/Paddle/issues/3213
L
luotao1 已提交
407
if '${CMAKE_BUILD_TYPE}' == 'Release':
P
peizhilin 已提交
408
    if os.name != 'nt':
409
        # only change rpath in Release mode, since in Debug mode, ${FLUID_CORE_NAME}.xx is too large to be changed.
L
luotao1 已提交
410
        if "@APPLE@" == "1":
411 412
            commands = ["install_name_tool -id '@loader_path/../libs/' ${PADDLE_BINARY_DIR}/python/paddle/fluid/${FLUID_CORE_NAME}" + '.so']
            commands.append("install_name_tool -add_rpath '@loader_path/../libs/' ${PADDLE_BINARY_DIR}/python/paddle/fluid/${FLUID_CORE_NAME}" + '.so')
L
luotao1 已提交
413
        else:
414
            commands = ["patchelf --set-rpath '$ORIGIN/../libs/' ${PADDLE_BINARY_DIR}/python/paddle/fluid/${FLUID_CORE_NAME}" + '.so']
W
Wilber 已提交
415
        # The sw_64 not suppot patchelf, so we just disable that.
H
houj04 已提交
416
        if platform.machine() != 'sw_64' and platform.machine() != 'mips64':
417 418 419
            for command in commands:
                if os.system(command) != 0:
                    raise Exception("patch ${FLUID_CORE_NAME}.%s failed, command: %s" % (ext_name, command))
P
peizhilin 已提交
420

P
peizhilin 已提交
421
ext_modules = [Extension('_foo', ['stub.cc'])]
P
peizhilin 已提交
422 423 424 425 426 427
if os.name == 'nt':
    # fix the path separator under windows
    fix_package_dir = {}
    for k, v in package_dir.items():
        fix_package_dir[k] = v.replace('/', '\\')
    package_dir = fix_package_dir
P
peizhilin 已提交
428
    ext_modules = []
429 430
elif sys.platform == 'darwin':
    ext_modules = []
T
tensor-tang 已提交
431

432
def find_files(pattern, root, recursive=False):
433
    for dirpath, _, files in os.walk(root):
434 435 436 437
        for filename in fnmatch.filter(files, pattern):
            yield os.path.join(dirpath, filename)
        if not recursive:
            break
438 439

headers = (
440
    list(find_files('*.h', '@PADDLE_SOURCE_DIR@/paddle')) +
441 442 443
    list(find_files('*.h', '@PADDLE_SOURCE_DIR@/paddle/fluid/extension/include')) +  # extension
    # For paddle uew custom op, only copy data type headers from `paddle/fluid/platform`
    # to `extension/incude`,
444
    ['@PADDLE_SOURCE_DIR@/paddle/fluid/platform/complex.h'] +
445 446
    ['@PADDLE_SOURCE_DIR@/paddle/fluid/platform/float16.h'] +
    ['@PADDLE_SOURCE_DIR@/paddle/utils/any.h'])
447

448 449 450
if '${WITH_MKLDNN}' == 'ON':
    headers += list(find_files('*', '${MKLDNN_INSTALL_DIR}/include')) # mkldnn

451
if '${WITH_GPU}' == 'ON' or '${WITH_ROCM}' == 'ON':
452 453
    # externalErrorMsg.pb for External Error message
    headers += list(find_files('*.pb', '${externalError_INCLUDE_DIR}'))
454 455 456 457 458

class InstallCommand(InstallCommandBase):
    def finalize_options(self):
        ret = InstallCommandBase.finalize_options(self)
        self.install_lib = self.install_platlib
459 460
        self.install_headers = os.path.join(self.install_platlib, 'paddle', 'include')
        
461
        return ret
462

463 464 465 466
class InstallHeaders(Command):
    """Override how headers are copied.
    """
    description = 'install C/C++ header files'
467

468 469 470 471 472
    user_options = [('install-dir=', 'd',
                     'directory to install header files to'),
                    ('force', 'f',
                     'force installation (overwrite existing files)'),
                   ]
473

474
    boolean_options = ['force']
475

476 477 478 479
    def initialize_options(self):
        self.install_dir = None
        self.force = 0
        self.outfiles = []
480

481 482 483 484
    def finalize_options(self):
        self.set_undefined_options('install',
                                   ('install_headers', 'install_dir'),
                                   ('force', 'force'))
485

486 487 488 489
    def mkdir_and_copy_file(self, header):
        if 'pb.h' in header:
            install_dir = re.sub('${PADDLE_BINARY_DIR}/', '', header)
        elif 'third_party' not in header:
490
            # paddle headers
491
            install_dir = re.sub('@PADDLE_SOURCE_DIR@/', '', header)
492
            if 'fluid' in install_dir or 'utils' in install_dir:
493
                install_dir = "paddle/extension/include/"
494 495 496
        else:
            # third_party
            install_dir = re.sub('${THIRD_PARTY_PATH}', 'third_party', header)
497
            patterns = ['install/mkldnn/include']
498 499
            for pattern in patterns:
                install_dir = re.sub(pattern, '', install_dir)
500 501 502 503
        install_dir = os.path.join(self.install_dir, os.path.dirname(install_dir))
        if not os.path.exists(install_dir):
            self.mkpath(install_dir)
        return self.copy_file(header, install_dir)
504

505 506 507 508 509 510 511 512
    def run(self):
        hdrs = self.distribution.headers
        if not hdrs:
            return
        self.mkpath(self.install_dir)
        for header in hdrs:
            (out, _) = self.mkdir_and_copy_file(header)
            self.outfiles.append(out)
513

514 515
    def get_inputs(self):
        return self.distribution.headers or []
516

517 518 519
    def get_outputs(self):
        return self.outfiles

520 521 522 523
# we redirect setuptools log for non-windows
if sys.platform != 'win32':
    @contextmanager
    def redirect_stdout():
524 525 526 527 528 529 530
        f_log = open('${SETUP_LOG_FILE}', 'w')
        origin_stdout = sys.stdout
        sys.stdout = f_log
        yield
        f_log = sys.stdout
        sys.stdout = origin_stdout
        f_log.close()
531 532 533 534 535
else:
    @contextmanager
    def redirect_stdout():
        yield

536 537
# Log for PYPI
if sys.version_info > (3,0):
538
    with open("@PADDLE_BINARY_DIR@/python/paddle/README.rst", "r", encoding='UTF-8') as f:
539 540
        long_description = f.read()
else:
541
    with open("@PADDLE_BINARY_DIR@/python/paddle/README.rst", "r")as f:
542 543
        long_description = unicode(f.read(), 'UTF-8')

W
wuhuanzhou 已提交
544 545 546 547 548 549
# strip *.so to reduce package size
if '${WITH_STRIP}' == 'ON':
    command = 'find ${PADDLE_BINARY_DIR}/python/paddle -name "*.so" | xargs -i strip {}'
    if os.system(command) != 0:
        raise Exception("strip *.so failed, command: %s" % command)

550 551 552 553
with redirect_stdout():
    setup(name='${PACKAGE_NAME}',
        version='${PADDLE_VERSION}',
        description='Parallel Distributed Deep Learning',
554 555 556 557 558 559 560 561 562 563
        long_description=long_description,
        long_description_content_type="text/markdown",
        author_email="Paddle-better@baidu.com",
        maintainer="PaddlePaddle",
        maintainer_email="Paddle-better@baidu.com",
        project_urls = {
            'Homepage': 'https://www.paddlepaddle.org.cn/',
            'Downloads': 'https://github.com/paddlepaddle/paddle'
        }, 
        license='Apache Software License',
564
        packages=packages,
565
        install_requires=setup_requires,
566 567 568 569 570 571 572 573 574
        ext_modules=ext_modules,
        package_data=package_data,
        package_dir=package_dir,
        scripts=paddle_bins,
        distclass=BinaryDistribution,
        headers=headers,
        cmdclass={
            'install_headers': InstallHeaders,
            'install': InstallCommand,
575 576 577
        },
        entry_points={
            'console_scripts': [
578
                'fleetrun = paddle.distributed.fleet.launch:launch'
579
            ]
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
        },
        classifiers=[
            'Development Status :: 5 - Production/Stable',
            'Operating System :: OS Independent',
            'Intended Audience :: Developers',
            'Intended Audience :: Education',
            'Intended Audience :: Science/Research',
            'License :: OSI Approved :: Apache Software License',
            'Programming Language :: C++',
            'Programming Language :: Python :: 2.7',
            'Programming Language :: Python :: 3.5',
            'Programming Language :: Python :: 3.6',
            'Programming Language :: Python :: 3.7',
            'Programming Language :: Python :: 3.8',
        ],
595 596
    )

597
# As there are a lot of files in purelib which causes many logs,
598
# we don't print them on the screen, and you can open `setup.py.log`
599
# for the full logs.
600 601
if os.path.exists('${SETUP_LOG_FILE}'):
    os.system('grep -v "purelib" ${SETUP_LOG_FILE}')