Metadata-Version: 2.4
Name: pylogical220
Version: 0.1.0
Summary: Useful package for logic of python, contains 18 attributes.
Home-page: https://github.com/Felipe057a/pip
Author: as-220
License: MIT License
        
        Copyright (c) 2025 as-220
        
        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...
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: home-page
Dynamic: license-file

# PyLogical

PyLogical é um pacote Python com 18 atributos lógicos avançados para facilitar verificações complexas em código.

## Instalação
```bash
pip install pylogical
```

## Uso
```python
from pylogical import IsEven, IsEmpty
print(IsEven(10).result())  # True
print(IsEmpty([]).result())  # True
```

## Testes
```bash
pytest tests/
```
