19 lines
564 B
Python
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]': ...
|