Created
February 19, 2021 01:38
-
-
Save hoangnt2601/71d56bca4bdd8e5404d3d126711a9c91 to your computer and use it in GitHub Desktop.
Build binary python code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| import os | |
| import sysconfig | |
| from glob import glob | |
| from setuptools import setup, find_packages | |
| from setuptools.command.build_py import build_py as _build_py | |
| from Cython.Build import cythonize | |
| EXCLUDE_FILES = [ | |
| "./setup.py", | |
| "./main.py" | |
| ] + glob("./src/face_recognition/scripts/*.py") | |
| # noinspection PyPep8Naming | |
| class build_py(_build_py): | |
| def find_package_modules(self, package, package_dir): | |
| ext_suffix = sysconfig.get_config_var('EXT_SUFFIX') | |
| modules = super().find_package_modules(package, package_dir) | |
| filtered_modules = [] | |
| for (pkg, mod, filepath) in modules: | |
| if os.path.exists(filepath.replace('.py', ext_suffix)): | |
| continue | |
| filtered_modules.append((pkg, mod, filepath, )) | |
| return filtered_modules | |
| def get_ext_paths(root_dir, exclude_files): | |
| """get filepaths for compilation""" | |
| paths = [] | |
| for root, dirs, files in os.walk(root_dir): | |
| for filename in files: | |
| if os.path.splitext(filename)[1] != '.py': | |
| continue | |
| file_path = os.path.join(root, filename) | |
| if file_path in exclude_files: | |
| continue | |
| paths.append(file_path) | |
| return paths | |
| setup( | |
| name='FaceRecognition', | |
| version='0.1.0', | |
| packages=find_packages(), | |
| ext_modules=cythonize( | |
| get_ext_paths('./', EXCLUDE_FILES), | |
| compiler_directives={'language_level': 3} | |
| ), | |
| cmdclass={ | |
| 'build_py': build_py | |
| } | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment