mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
9 lines
224 B
Python
9 lines
224 B
Python
from typing import Literal
|
|
|
|
from .utils.version import get_version as get_version
|
|
|
|
VERSION: tuple[int, int, int, Literal["alpha", "beta", "rc", "final"], int]
|
|
__version__: str
|
|
|
|
def setup(set_prefix: bool = ...) -> None: ...
|