Installation
ConfigBuddy can be installed via pip:
pip install configbuddy
Requirements
ConfigBuddy requires Python 3.8 or later. The following dependencies will be automatically installed:
PyYAML
rich
jsonschema
Development Installation
To install ConfigBuddy for development:
Clone the repository:
git clone https://github.com/harimkang/configbuddy.git cd configbuddy
Create a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
Install development dependencies:
pip install -e "."