From: Francois Fleuret Date: Thu, 15 Jun 2017 12:38:18 +0000 (+0200) Subject: Cleaning up. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=pysvrt.git;a=commitdiff_plain;h=19c714fe93fc070181d1ecfa87b5c67e156e3cc5 Cleaning up. --- diff --git a/build.py b/build.py index da18d39..1de39c6 100755 --- a/build.py +++ b/build.py @@ -21,10 +21,10 @@ # You should have received a copy of the GNU General Public License # along with selector. If not, see . -import os +from os import path from torch.utils.ffi import create_extension -abs_path = os.path.dirname(os.path.abspath(__file__)) +abs_path = path.dirname(path.abspath(__file__)) ffi = create_extension( 'svrt', @@ -37,5 +37,4 @@ ffi = create_extension( with_cuda = False ) -if __name__ == '__main__': - ffi.build() +ffi.build()