File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed
Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 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
38from enum import Enum , auto
49from pathlib import Path
Original file line number Diff line number Diff line change 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
38from pathlib import Path
49from typing import Any
Original file line number Diff line number Diff line change 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
38from cppython .core .schema import CPPythonModel
49
Original file line number Diff line number Diff line change 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
38from pathlib import Path
49
You can’t perform that action at this time.
0 commit comments