12 lines
274 B
Python
12 lines
274 B
Python
from abc import abstractmethod
|
|
|
|
from setuptools import Command
|
|
|
|
class easy_install(Command):
|
|
@abstractmethod
|
|
def initialize_options(self) -> None: ...
|
|
@abstractmethod
|
|
def finalize_options(self) -> None: ...
|
|
@abstractmethod
|
|
def run(self) -> None: ...
|