Updated docs

This commit is contained in:
2023-02-20 15:55:20 +01:00
parent 48d0daabf5
commit 9e28dce5ce
632 changed files with 10917 additions and 6775 deletions

View File

@@ -2,27 +2,32 @@ from abc import abstractmethod, ABC
class PublisherABC(ABC):
@abstractmethod
def __init__(self):
ABC.__init__(self)
@property
@abstractmethod
def source_path(self) -> str: pass
def source_path(self) -> str:
pass
@property
@abstractmethod
def dist_path(self) -> str: pass
def dist_path(self) -> str:
pass
@abstractmethod
def include(self, path: str): pass
def include(self, path: str):
pass
@abstractmethod
def exclude(self, path: str): pass
def exclude(self, path: str):
pass
@abstractmethod
def build(self): pass
def build(self):
pass
@abstractmethod
def publish(self): pass
def publish(self):
pass