Metadata-Version: 2.4
Name: docbinder-oss
Version: 0.1.0
Summary: DocBinder Open Source Shared Library
Author-email: Paolo Leonard <paolo@snappylab.dev>, Christophe Beke <christophe@snappylab.dev>
License-File: LICENSE
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# ...existing code...

## Virtual Environment Setup

To create and activate the OSS library virtual environment:

```zsh
python3 -m venv .venv-oss
source .venv-oss/bin/activate
```

Install dependencies:

```zsh
pip install -r requirements.txt
```

To deactivate:
```zsh
deactivate
```

## Getting Started with Development

1. Clone the repository and navigate to the docbinder-oss folder.
2. Create and activate the virtual environment as shown above.
3. Install dependencies with `pip install -r requirements.txt`.
4. Start developing! You can run the OSS library or its tests as needed.

- Make sure you are in the docbinder-oss folder and your virtual environment is activated before running any scripts or development commands.