Developer Guide for torchebm
¶
Table of Contents¶
- Introduction
- Setting Up the Development Environment
- Prerequisites
- Cloning the Repository
- Installing Dependencies
- Code Style and Quality
- Code Formatting
- Linting
- Type Checking
- Testing
- Documentation
- Docstring Conventions
- API Documentation Generation
- Contributing
- Branching Strategy
- Commit Messages
- Pull Requests
- Additional Resources
Introduction¶
Welcome to the developer guide for torchebm
, a Python library focused on components and algorithms for energy-based models. This document provides instructions and best practices for contributing to the project.
Setting Up the Development Environment¶
Prerequisites¶
Ensure you have the following installed:
- Python: Version 3.9 or higher.
- Git: For version control.
- pip: Python package installer.
Cloning the Repository¶
Clone the repository using SSH:
Or using HTTPS:
Navigate to the project directory:
Installing Dependencies¶
Install the development dependencies:
This command installs the package in editable mode along with all development dependencies specified in the pyproject.toml
file.
Code Style and Quality¶
Maintaining a consistent code style ensures readability and ease of collaboration.
To streamline code formatting and quality checks in your development workflow, integrating tools like Black, isort, and mypy directly into your Integrated Development Environment (IDE) can be highly beneficial. Many modern IDEs, such as PyCharm, offer built-in support or plugins for these tools, enabling automatic code formatting and linting as you write.
PyCharm Integration:
-
Black Integration: Starting from PyCharm 2023.2, Black integration is built-in. To enable it:
-
Navigate to
Preferences
orSettings
>Tools
>Black
. - Configure the settings as desired.
-
Ensure Black is installed in your environment:
-
isort Integration: While PyCharm doesn't have built-in isort support, you can set it up using File Watchers:
-
Install the File Watchers plugin if it's not already installed.
- Navigate to
Preferences
orSettings
>Tools
>File Watchers
. -
Add a new watcher for isort with the following configuration:
- File Type: Python
- Scope: Current File
- Program: Path to isort executable (e.g.,
$PyInterpreterDirectory$/isort
) - Arguments:
$FilePath$
- Output Paths to Refresh:
$FilePath$
- Working Directory:
$ProjectFileDir$
-
mypy Integration: To integrate mypy:
-
Install mypy in your environment:
-
Set up a File Watcher in PyCharm similar to isort, replacing the program path with the mypy executable path.
VSCode Integration:
For Visual Studio Code users, extensions are available for seamless integration:
- Black Formatter: Install the "Python" extension by Microsoft, which supports Black formatting.
- isort: Use the "Python" extension's settings to enable isort integration.
- mypy: Install the "mypy" extension for real-time type checking.
By configuring your IDE with these tools, you ensure consistent code quality and adhere to the project's coding standards effortlessly.
If you prefer to do these steps manually, please read the following steps, if not, you can ignore this section.
Code Formatting¶
We use Black for code formatting. To format your code, run:
Linting¶
isort is used for sorting imports. To sort imports, execute:
Type Checking¶
mypy is employed for static type checking. To check types, run:
Testing¶
We utilize pytest for testing. To run tests, execute:
For test coverage, use:
Documentation¶
Docstring Conventions¶
All docstrings should adhere to the Google style guide. For example:
def function_name(param1, param2):
"""Short description of the function.
Longer description if needed.
Args:
param1 (type): Description of param1.
param2 (type): Description of param2.
Returns:
type: Description of return value.
Raises:
ExceptionType: Explanation of when this exception is raised.
Examples:
result = function_name(1, "test")
"""
# Function implementation
API Documentation Generation¶
The API documentation is automatically generated from docstrings using generate_api_docs.py
, MkDocs, and the MkDocstrings plugin.
To update the API documentation:
-
Run the API documentation generator script:
-
Build the documentation to preview changes:
Contributing¶
We welcome contributions! Please follow the guidelines below.
Branching Strategy¶
- main: Contains stable code.
- feature/branch-name: For developing new features.
- bugfix/branch-name: For fixing bugs.
Commit Messages¶
Use clear and concise commit messages. Follow the format:
Subject line (imperative, 50 characters or less)
Optional detailed description, wrapped at 72 characters.
Pull Requests¶
Before submitting a pull request:
- Ensure all tests pass.
- Update documentation if applicable.
- Adhere to code style guidelines.
Additional Resources¶
By following this guide, you will help maintain the quality and consistency of the torchebm
library. Happy coding!