numberlab 0.1.5

A collection of numerical algorithms
Documentation
# Contributing to numberlab

Thank you for considering contributing to the numberlab project! We welcome contributions from the community and are
excited to see what you can bring to the project.

## How to Contribute

### Reporting Bugs

If you find a bug, please report it by opening an issue on GitHub. Include as much detail as possible to help us
understand and reproduce the issue.

### Suggesting Features

If you have an idea for a new feature, please open an issue to discuss it. We welcome new ideas and feedback on how to
improve the project.

### Submitting Pull Requests

1. **Fork the Repository**: Click the "Fork" button at the top of the repository page to create a copy of the repository
   in your GitHub account.

2. **Clone the Repository**: Clone your forked repository to your local machine.
    ```sh
    git clone https://github.com/your-username/numberlab.git
    cd numberlab
    ```

3. **Create a New Branch**: Create a new branch for your changes.
    ```sh
    git checkout -b my-new-feature
    ```

4. **Make Your Changes**: Make your changes to the codebase. Ensure that your code adheres to the project's coding
   standards and passes all tests.

5. **Commit Your Changes**: Commit your changes with a descriptive commit message.
    ```sh
    git commit -am 'Add some feature'
    ```

6. **Push to Your Branch**: Push your changes to your forked repository.
    ```sh
    git push origin my-new-feature
    ```

7. **Open a Pull Request**: Go to the original repository and open a pull request. Provide a clear and descriptive title
   and description for your pull request.

## Code of Conduct

Please make sure your contributions adhere to our [Code of Conduct](http://contributor-covenant.org).

## Development Guidelines

- Follow the existing code style and conventions.
- Write clear and concise commit messages.
- Add tests for new features and bug fixes.
- Ensure that all tests pass before submitting a pull request.

## Getting Help

If you need help or have any questions, feel free to open an issue or reach out to the maintainers.

We appreciate your contributions and look forward to working with you!