forked from bwsw/rt-motion-detection-opencv-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (32 loc) · 841 Bytes
/
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
#!/usr/bin/env python
import subprocess
import sys
from distutils.command.build import build
from distutils.command.clean import clean
from setuptools import setup
class Build(build):
def run(self):
if subprocess.call(["make"]) != 0:
sys.exit(-1)
class Clean(clean):
def run(self):
if subprocess.call(["make", "clean"]) != 0:
sys.exit(-1)
class FClean(clean):
def run(self):
if subprocess.call(["make", "fclean"]) != 0:
sys.exit(-1)
class Rebuild(FClean, Build):
def run(self):
if subprocess.call(["make", "re"]) != 0:
sys.exit(-1)
setup(
name='motion detector optimization',
packages=['opti_module'],
cmdclass={
'build': Build,
'clean': Clean,
'fclean': FClean,
'rebuild': Rebuild
}
)