You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rafael JPD edited this page Mar 3, 2025
·
1 revision
Installation
To install SciELO Log Validator, you can use pip.
# First, make sure both pip and setuptools are up to date:
pip install --upgrade pip setuptools
# Install the latest version (0.4.0 as of March 2025). Replace 0.4.0 with the latest version if available
pip install git+https://github.com/scieloorg/scielo_log_validator@0.4.0
Development Environment Setup
To set up a development environment, follow these steps:
Clone the repository:
git clone https://github.com/scieloorg/scielo_log_validator.git
cd scielo_log_validator
Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
Install dependencies:
pip install -r requirements.txt
Install the package in editable mode:
pip install -e .
Run tests to ensure everything is set up correctly: