Metadata-Version: 2.4
Name: raiz
Version: 0.1.0
Summary: Raiz - Simple CLI Requirements Management Tool
Author-email: daleonpz <daniel@baremetallics.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/daleonpz/raiz
Project-URL: Issues, https://github.com/daleonpz/raiz/issues
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.12.0
Requires-Dist: PyYAML>=6.0
Requires-Dist: rich>=13.0.0
Requires-Dist: robotframework>=7.0
Requires-Dist: robotframework-jsonlibrary>=0.4
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: black>=24.0; extra == "dev"
Requires-Dist: ruff>=0.7; extra == "dev"
Dynamic: license-file


```mermaid

flowchart TD
    A[Start] --> B{Is it a weekday?}
    B -- Yes --> C[Go to work]
    B -- No --> D[Relax at home]
    C --> E[Finish work]
    D --> E
    E --> F[End of day]
```

```plantuml
@startuml
start
if (Is it a weekday?) then (yes)
  :Go to work;
else (no)
  :Relax at home;
endif
:Finish work;
stop
@enduml
```

```dot
digraph G {
    A [label="Start"]
    B [label="Is it a weekday?"]
    C [label="Go to work"]
    D [label="Relax at home"]
    E [label="Finish work"]
    F [label="End of day"]

    A -> B
    B -> C [label="Yes"]
    B -> D [label="No"]
    C -> E
    D -> E
    E -> F
}
```

```mermaid
sequenceDiagram
actor Alice as Alice
actor Bob as Bob
actor A1 as New Actor

Note right of Alice: A typical message
Alice ->> Bob: HimmsdnoteoverA1: aeu
Alice ->> A1: send
A1 --) Alice: receive
A1 --) Bob: new msg
Bob ->> Bob: new msg
Bob ->> Alice: Hi Alice

```
