|
1 | 1 | from _typeshed import BytesPath, StrOrBytesPath, StrPath, Unused |
2 | 2 | from abc import abstractmethod |
3 | 3 | from collections.abc import Callable, Iterable |
4 | | -from typing import Any, ClassVar, TypeVar, overload |
5 | | -from distutils.command.bdist import bdist |
6 | | -from distutils.command.bdist_dumb import bdist_dumb |
7 | | -from distutils.command.bdist_rpm import bdist_rpm |
8 | | -from distutils.command.build import build |
9 | | -from distutils.command.build_clib import build_clib |
10 | | -from distutils.command.build_ext import build_ext |
11 | | -from distutils.command.build_py import build_py |
12 | | -from distutils.command.build_scripts import build_scripts |
13 | | -from distutils.command.check import check |
14 | | -from distutils.command.clean import clean |
15 | | -from distutils.command.config import config |
16 | | -from distutils.command.install import install |
17 | | -from distutils.command.install_data import install_data |
18 | | -from distutils.command.install_egg_info import install_egg_info |
19 | | -from distutils.command.install_headers import install_headers |
20 | | -from distutils.command.install_lib import install_lib |
21 | | -from distutils.command.install_scripts import install_scripts |
22 | | -from distutils.command.register import register |
23 | | -from distutils.command.sdist import sdist |
24 | | -from distutils.command.upload import upload |
25 | | -from distutils.dist import Distribution |
26 | 4 | from typing import Any, ClassVar, Literal, TypeVar, overload |
27 | 5 | from typing_extensions import TypeVarTuple, Unpack |
28 | 6 |
|
| 7 | +from .command.bdist import bdist |
| 8 | +from .command.bdist_dumb import bdist_dumb |
| 9 | +from .command.bdist_rpm import bdist_rpm |
| 10 | +from .command.build import build |
| 11 | +from .command.build_clib import build_clib |
| 12 | +from .command.build_ext import build_ext |
| 13 | +from .command.build_py import build_py |
| 14 | +from .command.build_scripts import build_scripts |
| 15 | +from .command.check import check |
| 16 | +from .command.clean import clean |
| 17 | +from .command.config import config |
| 18 | +from .command.install import install |
| 19 | +from .command.install_data import install_data |
| 20 | +from .command.install_egg_info import install_egg_info |
| 21 | +from .command.install_headers import install_headers |
| 22 | +from .command.install_lib import install_lib |
| 23 | +from .command.install_scripts import install_scripts |
| 24 | +from .command.register import register |
| 25 | +from .command.sdist import sdist |
| 26 | +from .command.upload import upload |
29 | 27 | from .dist import Distribution |
30 | 28 |
|
31 | 29 | _StrPathT = TypeVar("_StrPathT", bound=StrPath) |
|
0 commit comments