Beispiel #1
0
 def run(self):
     print("Running build...")
     ret = build_ext.run(self)
     fs = glob.glob(f'_libtempura*.so')
     try:
         assert len(fs)==1
     except:
         print(fs)
         raise
     shutil.move(fs[0],f'pytempura/{fs[0]}')
     return ret
Beispiel #2
0
 def run(self):
     prebuild()
     # Then let setuptools do its thing.
     return build_ext.run(self)
Beispiel #3
0
 def run(self):
     print("Running build...")
     prebuild()
     # Then let setuptools do its thing.
     return build_ext.run(self)