|
| list | setup.architecture_directory = ['x86_64', 'armv7l', 'aarch64'] |
| |
| str | setup.package_name = 'onert' |
| |
| str | setup.package_directory = 'onert' |
| |
| list | setup.packaging_directory = ['build', package_directory + '.egg-info'] |
| |
| | setup.THIS_FILE_DIR = os.path.dirname(os.path.abspath(__file__)) |
| |
| | setup.DEFAULT_PRODUCT_DIR = os.path.normpath(os.path.join(THIS_FILE_DIR, "../../../Product")) |
| |
| list | setup.so_list = [] |
| |
| list | setup.so_files = [] |
| |
| str | setup.target_arch = 'none' |
| |
| | setup.arg_split = arg.split('=') |
| |
| str | setup.arg_arch = '' |
| |
| | setup.arch_idx = sys.argv.index('--plat-name') |
| |
| | setup.PY_DIR |
| |
| | setup.rel_path = os.path.relpath(root, PY_DIR) |
| |
| | setup.dest_dir = os.path.join(THIS_FILE_DIR, package_directory) |
| |
| | setup.dest_sub_dir = os.path.join(dest_dir, rel_path) |
| |
| | setup.exist_ok |
| |
| | setup.src_path = os.path.join(root, py_file) |
| |
| | setup.arch_path = os.path.join(package_directory, target_arch) |
| |
| | setup.so_base_dir = get_directories() |
| |
| | setup.tgt_path = os.path.join(arch_path, so) |
| |
| | setup.so_core_dir = os.path.join(so_base_dir, 'nnfw') |
| |
| | setup.so_core_tgt_dir = os.path.join(arch_path, 'nnfw') |
| |
| | setup.so_backend_dir = os.path.join(so_base_dir, 'nnfw/backend') |
| |
| | setup.so_backend_tgt_dir = os.path.join(arch_path, 'nnfw/backend') |
| |
| | setup.so_odc_dir = os.path.join(so_base_dir, 'nnfw/odc') |
| |
| | setup.so_odc_tgt_dir = os.path.join(arch_path, 'nnfw/odc') |
| |
| | setup.name |
| |
| | setup.version |
| |
| | setup.description |
| |
| | setup.long_description |
| |
| | setup.url |
| |
| | setup.license |
| |
| | setup.has_ext_modules |
| |
| | setup.packages |
| |
| | setup.package_data |
| |
| | setup.install_requires |
| |