Uh oh!
There was an error while loading. Please reload this page.
forked from alibaba/EasyParallelLibrary
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
125 lines (108 loc) · 3.64 KB
/
Copy pathsetup.py
File metadata and controls
125 lines (108 loc) · 3.64 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Copyright 2021 Alibaba Group Holding Limited. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# =============================================================================
"""Setup script."""
from __future__ importabsolute_import
from __future__ importdivision
from __future__ importprint_function
importglob
importos
importsubprocess
importsys
importshutil
fromdistutils.cmdimportCommandasDistutilsCommand
fromdistutils.command.buildimportbuildasDistutilsBuild
fromsetuptoolsimportfind_packages
fromsetuptoolsimportsetup
importtensorflowastf
defget_tf_version():
"""Get tf version."""
tf_version=tf.__version__
tf_version='.'.join(tf_version.split('.')[:2])
returntf_version
ifsys.version_info[0] <3:
importimp
VERSION=imp.load_source('epl.version', 'epl/utils/version.py').VERSION
else:
fromimportlib.machineryimportSourceFileLoader
VERSION=SourceFileLoader("epl.version", "epl/utils/version.py") \
.load_module().VERSION
VERSION=VERSION+"+"+get_tf_version()
PACKAGES=find_packages(exclude=["build", "csrc", "dist", "docs", "tests", "examples"])
PACKAGE_DATA= {'': ['*.so']}
cwd=os.path.dirname(os.path.abspath(__file__))
cc_path=os.path.join(cwd, "csrc")
defbuild_clean():
"""build clean."""
subprocess.check_call(["make", "clean"], cwd=cc_path)
patterns_to_remove= ["dist/", "build/", "*.egg-info/", "*.pyc", "*.orig", "events.out.tfevents.*"]
forpatterninpatterns_to_remove:
foriteminglob.glob(pattern):
shutil.rmtree(item)
print("remove {}".format(item))
classEplBuild(DistutilsBuild):
"""EPL build."""
defrun(self):
build_clean()
subprocess.check_call(["make", "-j8"], cwd=cc_path)
DistutilsBuild.run(self)
classEplClean(DistutilsCommand):
"""EPL clean."""
user_options= []
definitialize_options(self):
pass
deffinalize_options(self):
pass
defrun(self):
build_clean()
setup(
name='pyepl',
version=VERSION,
packages=PACKAGES,
include_package_data=True,
package_data=PACKAGE_DATA,
package_dir={"": "./"},
entry_points={
"console_scripts": [
"epl-launch=epl.utils.launcher:main",
]
},
cmdclass={'build': EplBuild, 'clean': EplClean},
zip_safe=False,
author='Alibaba Inc.',
url='https://easyparallellibrary.readthedocs.io/en/latest/',
description=('Easy Parallel Library(EPL) powered by Alibaba.'),
keywords=['distributed training', 'machine learning', 'tensorflow'],
extras_require={
':python_version == "2.7"': [
'pandas',
'matplotlib==2.0.0'
],
':python_version >= "3.4"': [
'pandas',
'matplotlib==3.3.4',
'toposort'
],
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Operating System :: OS Independent',
],
license='Apache 2.0',
)