Metadata-Version: 2.1
Name: sheepy
Version: 0.0.2
Summary: 🐑An incredible and performant framework for unit testing🐑
Home-page: https://github.com/BrunoCiccarino/standlib
Author: BrunoCiccarino
Author-email: ciccabr9@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

.. _sheepy:

Sheepy: A Simple Python Unit Testing Framework

====================================================

Introduction
------------

Sheepy is a lightweight unit testing framework designed for Python developers who value simplicity and ease of use. It provides a core set of components to write unit tests and generate basic test reports.

... 

Installation
----------

To install Sheepy, simply:

.. code-block:: bash

   pip install sheepy

... 

Usage
-----

Here's a basic example of how to use Sheepy:

.. code-block:: python

   from sheepy import sheepy

   @sheepy
   def test_add():
       assert 2 + 2 == 4

   # ...

... 

Customization
-------------

Sheepy allows for customization in several ways:

* **Logging:** ...
* **Reporting:** ...
* **Test discovery:** ...


API Reference
-------------

.. automodule:: sheepy
   :members:
   :undoc-members:
   :show-inheritance:
