freelance-project-34-market.../mypy-stubs/mypyc/build/__init__.pyi
2024-11-22 22:51:31 +03:00

19 lines
564 B
Python

import setuptools.extension
from typing import (Any, Iterable,)
def mypycify(
paths: 'list[str]',
*,
only_compile_paths: 'Iterable[str] | None' = None,
verbose: 'bool' = False,
opt_level: 'str' = '3',
debug_level: 'str' = '1',
strip_asserts: 'bool' = False,
multi_file: 'bool' = False,
separate: 'bool | list[tuple[list[str], str | None]]' = False,
skip_cgen_input: 'Any | None' = None,
target_dir: 'str | None' = None,
include_runtime_files: 'bool | None' = None,
) -> 'list[setuptools.extension.Extension]': ...