Skip to content

Commit 201d0d4

Browse files
committed
Fill Documentation Stubs
1 parent 50aac50 commit 201d0d4

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

cppython/plugins/cmake/schema.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
"""CMake data definitions"""
1+
"""CMake plugin schema
2+
3+
This module defines the schema and data models for integrating the CMake
4+
generator with CPPython. It includes definitions for cache variables,
5+
configuration presets, and synchronization data.
6+
"""
27

38
from enum import Enum, auto
49
from pathlib import Path

cppython/plugins/conan/plugin.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
"""_summary_"""
1+
"""Conan Provider Plugin
2+
3+
This module implements the Conan provider plugin for CPPython. It handles
4+
integration with the Conan package manager, including dependency resolution,
5+
installation, and synchronization with other tools.
6+
"""
27

38
from pathlib import Path
49
from typing import Any

cppython/plugins/conan/schema.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
"""TODO"""
1+
"""Conan plugin schema
2+
3+
This module defines Pydantic models used for integrating the Conan
4+
package manager with the CPPython environment. The classes within
5+
provide structured configuration and data needed by the Conan Provider.
6+
"""
27

38
from cppython.core.schema import CPPythonModel
49

cppython/plugins/git/plugin.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
"""Git SCM plugin"""
1+
"""Git SCM Plugin
2+
3+
This module implements the Git SCM plugin for CPPython. It provides
4+
functionality for interacting with Git repositories, including feature
5+
detection, version extraction, and project description retrieval.
6+
"""
27

38
from pathlib import Path
49

0 commit comments

Comments
 (0)