Metadata-Version: 2.4
Name: clear-skies-gitlab
Version: 2.0.1
Summary: Gitlab module for Clearskies
Project-URL: Docs, https://https://clearskies.info/modules/clear-skies-gitlab
Project-URL: Repository, https://github.com/clearskies-py/gitlab
Project-URL: Issues, https://github.com/clearskies-py/gitlab/issues
Project-URL: Changelog, https://github.com/clearskies-py/gitlab/blob/main/CHANGELOG.md
Author-email: Tom Nijboer <tom.nijboer@cimpress.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: <4.0,>=3.11
Requires-Dist: clear-skies>=2.0.0
Requires-Dist: gql>=4.0.0
Requires-Dist: requests>=2.32.5
Provides-Extra: dev
Requires-Dist: types-requests>=2.32.4; extra == 'dev'
Description-Content-Type: text/markdown


# gitlab


Gitlab module for Clearskies

This template scaffolds a dynamic Clearskies module for any kind of logic, integration, or API. You can use it to build modules for data processing, service integration, automation, or any custom business logic.

Your module can implement any logic you need: fetch data, process input, interact with external services, or perform custom actions. The endpoints and payloads are up to you.

## Installation

```bash
# Install uv if not already installed
pip install uv

# Create a virtual environment and install dependencies
uv sync
```

## Development

To set up your development environment with pre-commit hooks:

```bash
# Install uv if not already installed
pip install uv

# Create a virtual environment and install all dependencies (including dev)
uv sync

# Install dev dependencies (including ruff, black, mypy) in the project environment
uv pip install .[dev]

# Install pre-commit hooks
uv run pre-commit install

# Optionally, run pre-commit on all files
uv run pre-commit run --all-files
```

## Usage Example

```python
import clearskies
import clearskies_gitlab

wsgi = clearskies.contexts.WsgiRef(
    clearskies_gitlab.build__module()
)
wsgi()
```
