forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py.in
More file actions
21 lines (17 loc) · 502 Bytes
/
setup.py.in
File metadata and controls
21 lines (17 loc) · 502 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
INTERNAL_PACKAGE='${PADDLE_INTERNAL_PACKAGE}'
packages=['paddle',
'paddle.proto',
'paddle.trainer',
'paddle.trainer_config_helpers',
'paddle.utils']
if len(INTERNAL_PACKAGE) != 0:
packages.append(INTERNAL_PACKAGE)
setup(name='paddle',
version='${PADDLE_VERSION}',
description='Parallel Distributed Deep Learning',
packages=packages,
package_dir={
'': '${CMAKE_CURRENT_SOURCE_DIR}'
}
)