Metadata-Version: 2.1
Name: HybridJSONTestRunner
Version: 0.8.1
Summary: A fork of Gradescope's autograder_utils package that adds support for modern features and PrairieLearn
Author-email: Gregory Bell <trihard.studios@outlook.com>
License: MIT License
        
        Copyright (c) 2024 Gregory Bell
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Repository, https://github.com/gregbell26/HybridJsonTestRunner
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# Hybrid JSON Test Runner

> A replacement for Gradescope's autograder-utils package


### Why?

Gradescope's autograder-utils package has been largely unmaintained since 2022, which is problematic as many features
have been added to the autograder platform since then. AND there exists well know breaking bugs with their implementation

This package aims to address those concerns by supporting the most recent iteration of the autograder (last update 10-2-23)
while also adding support for other platforms (Like PrairieLearn) that also use similar JSON output formats.

### How?

This package operates very similarly to the existing autograder-utils package.

The main difference is that this implements the PR proposed [here](https://github.com/gradescope/gradescope-utils/pull/38), updates decorator syntax, and adds supports for images via the decorators.

Additionally, it uses the newer `pyproject.toml` config for running as opposed to the legacy `setup.py` that the old Gradescope package.

Example usages are coming, but for now, refer to the _mostly_ working unit tests.

Expect breaking changes as I finalize how the API should be updated.
