Metadata-Version: 2.4
Name: fushinryu-model
Version: 0.1.5
Summary: Model of the Fushinryu development projects management methodology.
Project-URL: Repository, https://gitlab.com/Kencho1/fushinryu-model
Project-URL: Documentation, https://fushinryu-model.readthedocs.io
Author: Jesús Alonso Abad
License-Expression: MIT
License-File: LICENSE.md
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Requires-Python: >=3.11
Requires-Dist: pleroma>=0.2.0
Requires-Dist: pydantic>=2.0
Provides-Extra: docs
Requires-Dist: mkdocs-material>=9.0; extra == 'docs'
Requires-Dist: mkdocstrings[python]>=0.24; extra == 'docs'
Provides-Extra: test
Requires-Dist: mypy~=1.8; extra == 'test'
Requires-Dist: pytest-cov~=6.0; extra == 'test'
Requires-Dist: pytest-mark-ac~=1.1; extra == 'test'
Requires-Dist: pytest~=8.3; extra == 'test'
Requires-Dist: pyyaml~=6.0; extra == 'test'
Requires-Dist: ruff~=0.8; extra == 'test'
Requires-Dist: tox~=4.0; extra == 'test'
Description-Content-Type: text/markdown

# fushinryu-model

Model of the Fūshinryū (風心流) development projects management methodology.

[![Python 3.11+](https://img.shields.io/badge/python-3.11%2B-blue)](https://www.python.org)
[![License: MIT](https://img.shields.io/badge/license-MIT-green)](LICENSE.md)
[![Documentation](https://readthedocs.org/projects/fushinryu-model/badge/?version=latest)](https://fushinryu-model.readthedocs.io)

## Install

```
pip install fushinryu-model
```

## Quick example

```python
from datetime import datetime, timezone
from fushinryu_model import AcceptanceCriterion, ManualValidation

ac = AcceptanceCriterion(id=1, then="the system returns HTTP 200")
validation = ManualValidation(verdict="verified manually", passed=True, timestamp=datetime.now(timezone.utc))
ac = ac.model_copy(update={"validations": frozenset([validation])})
assert ac.is_validated
```

Full documentation: <https://fushinryu-model.readthedocs.io>
