-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
167 lines (142 loc) · 5.24 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# -*- coding: utf-8 -*-
# MegFlow is Licensed under the Apache License, Version 2.0 (the "License")
#
# Copyright (c) 2019-2021 Megvii Inc. All rights reserved.
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#!/usr/bin/env python
# coding=utf-8
import sys
import os
import glob
import re
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
from setuptools.command.build_py import build_py
from distutils.file_util import copy_file
from distutils.dir_util import copy_tree, mkpath, remove_tree
import subprocess as sp
import platform
system = platform.system().lower()
dyn_ext = 'so'
if system == 'darwin':
dyn_ext = 'dylib'
elif system == 'windows':
dyn_ext = 'dll'
debug = os.environ.get("DEBUG")
target_dir = os.environ.get("CARGO_TARGET_DIR")
if not debug:
debug = False
if not target_dir:
target_dir = "../target"
class FirstBuildExt(build_py):
def run(self):
self.run_command("build_ext")
return super().run()
class CargoExtension(Extension):
def __init__(self,
target,
src,
dst,
features=[]):
Extension.__init__(self, target, sources=[])
self.target = target
self.src = src
self.dst = dst
self.features = features
def build(self):
command = ['cargo', 'build', '-p', self.target]
if len(self.features) != 0:
command.append('--features')
command.append(' '.join(self.features))
if not debug:
command.append('--release')
sp.check_call(command)
def install(self, prefix):
copy_file('{}/{}'.format(prefix, self.src), 'megflow/{}'.format(self.dst))
class CopyExtension(Extension):
def __init__(self, pattern, src, dst):
Extension.__init__(self, '', sources=[])
self.src = src
self.dst = dst
self.pattern = pattern
def copy(self):
mkpath('megflow/{}'.format(self.dst))
paths = glob.glob(self.src)
paths = [ x for x in paths if self.pattern.fullmatch(x) ]
for path in paths:
copy_file(path, 'megflow/{}'.format(self.dst))
class ExtBuild(build_ext):
def run(self):
current_dir = os.getcwd()
repo = os.path.dirname(current_dir)
prefix = target_dir
if debug:
prefix += '/debug'
else:
prefix += '/release'
for ext in self.extensions:
if isinstance(ext, CargoExtension):
ext.build()
ext.install(prefix)
if isinstance(ext, CopyExtension):
ext.copy()
if __name__ == '__main__':
ext_modules=[
CargoExtension("flow-python", f"libflow_python.{dyn_ext}", f"megflow.{dyn_ext}", features=["extension-module"]),
CargoExtension("flow-quickstart", "megflow_quickstart", "megflow_quickstart_inner"),
]
ffmpeg_dir = os.getenv('FFMPEG_DIR')
prebuild = os.getenv('CARGO_FEATURE_DYNAMIC')
if prebuild is not None and ffmpeg_dir is not None:
pattern = re.compile(f'.*?{dyn_ext}\.[0-9]*')
ext_modules.append(CopyExtension(pattern, f"{ffmpeg_dir}/lib/*.{dyn_ext}.*", "lib/"))
current_dir = os.getcwd()
with open(current_dir+'/Cargo.toml') as f:
pattern = re.compile(r'\d+\.(?:\d+\.)*\d+')
for line in f:
if line.startswith('version'):
version = re.search(pattern, line).group()
break
setup(
options={
'bdist_wheel': {
'py_limited_api': "cp36",
}
},
name="megflow",
version=version,
packages=["megflow"],
author="Megvii IPU-SDK Team",
author_email="[email protected]",
url="https://github.com/MegEngine/MegFlow",
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Rust',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
ext_modules=ext_modules,
package_data={"": [f'megflow.{dyn_ext}', 'lib/*', 'megflow_quickstart_inner']},
entry_points={
'console_scripts':['megflow_run=megflow.command_line:megflow_run', 'run_with_plugins=megflow.command_line:run_with_plugins', 'megflow_quickstart=megflow.command_line:megflow_quickstart'],
},
cmdclass={
'build_ext': ExtBuild,
'build_py': FirstBuildExt
},
zip_safe=False,
)