Contributing
Thank you for your interest in contributing to the NOS Testbed (NOS-T). This guide will help you understand how to contribute effectively to this project.
Ways to Contribute
There are several ways you can contribute to NOS-T:
Reporting bugs and issues
Suggesting new features or enhancements
Improving documentation
Adding or enhancing examples
Contributing code fixes or new functionality
Development Setup
To set up your development environment:
Fork the repository
Clone your fork:
git clone https://github.com/your-username/nost-tools.gitSet up a virtual environment:
python -m venv venvActivate the environment:
source venv/bin/activate(Linux/Mac) orvenv\Scripts\activate(Windows)Install development dependencies:
pip install -e ".[dev]"
Coding Standards
Follow PEP 8 style guidelines
Write docstrings in Google Docstring format
Include unit tests for new functionality
Maintain compatibility with Python 3.8+
Pull Request Process
Create a new branch for your feature or fix
Make your changes and commit them with descriptive messages
Push your branch to your fork
Submit a pull request to the main repository
Respond to any feedback from reviewers
Documentation Guidelines
Use reStructuredText format for all documentation
Follow NASA documentation standards where applicable
Include examples where helpful
Keep API documentation up to date with code changes