blob: 8ea8d32b7e8c79a5edabf654ea41d25954b7b240 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from distutils.dist import Distribution
from typing import Any, List
def setup(**attrs: Any) -> Distribution: ...
class Command: ...
def find_packages(where: str) -> List[str]: ...
|