Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/docc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
The documentation compiler.
"""

__version__ = "0.3.0"
__version__ = "0.3.1"
"Current version of docc"
9 changes: 9 additions & 0 deletions src/docc/plugins/python/cst.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,16 @@ class PythonDiscover(Discover):
"""

paths: Sequence[str]
"""
File system paths to search for Python files.
"""

excluded_paths: Final[Sequence[PurePath]]
"""
File system paths to exclude from the search. Excluding a parent directory
excludes all children.
"""

settings: PluginSettings

def __init__(self, config: PluginSettings) -> None:
Expand Down