-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
102 lines (87 loc) · 2.79 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
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
# Copyright 2021-2022 Huawei Technologies Co., Ltd
#
# 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.
import os
from setuptools import setup
pwd = os.path.dirname(os.path.realpath(__file__))
def _read_file(filename):
with open(os.path.join(pwd, filename), encoding='UTF-8') as f:
return f.read()
version = _read_file('version.txt').replace("\n", "")
package_data = {
'akg': [
'*.so*',
'*.cuh',
'lib/*.so*',
'config/*',
'include/*',
'include/*/*',
'include/*/*/*',
'include/*/*/*/*'
]
}
def collect_dirs(cur_dir, dirs):
"""Collect all sub dirs in current dir."""
for root, all_dirs, _ in os.walk(cur_dir, followlinks=True):
for d in all_dirs:
if '.' in d:
continue
full_path = os.path.join(root, d)
package = full_path.replace(os.path.sep, '.')
dirs.append(package)
def find_files(where=None):
"""
Return a package list
'where' is the root directory list
"""
if where is None:
where = ['.']
dirs = [path.replace(os.path.sep, '.') for path in where]
for selected_root in where:
collect_dirs(selected_root, dirs)
packages = []
for d in dirs:
if d.endswith("__pycache__"):
continue
elif d.startswith("build."):
packages.append(d[6:])
else:
packages.append(d)
return packages
setup(
name='akg',
version=version,
author='The MindSpore Authors',
author_email='contact@mindspore.cn',
url='https://www.mindspore.cn/',
download_url='https://gitee.com/mindspore/akg/tags',
project_urls={
'Sources': 'https://gitee.com/mindspore/akg',
'Issue Tracker': 'https://gitee.com/mindspore/akg/issues',
},
description="An optimizer for operators in Deep Learning Networks, which provides the ability to automatically "
"fuse ops with specific patterns.",
license='Apache 2.0',
package_data=package_data,
packages=find_files(['build/akg']),
package_dir={'akg': 'build/akg'},
include_package_data=True,
install_requires=[
'scipy >= 1.5.2',
'numpy >= 1.17.0',
'decorator >= 4.4.0'
],
classifiers=[
'License :: OSI Approved :: Apache Software License'
]
)