Metadata-Version: 2.4
Name: utils-rpa
Version: 0.1.1
Summary: Conjunto de utilitários e configurações para facilitar o desenvolvimento de RPA com Python.
License-Expression: MIT
License-File: LICENSE
Keywords: rpa,automation,automacao,utils,bot
Author: Emanuel Borges Albano
Author-email: emanuelborgesdev@gmail.com.br
Requires-Python: >=3.12
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business
Provides-Extra: all
Provides-Extra: playwright
Provides-Extra: requests
Provides-Extra: selenium
Requires-Dist: aiohttp (>=3.14.1,<4.0.0)
Requires-Dist: anticaptchaofficial (>=1.0.46) ; extra == "all"
Requires-Dist: anticaptchaofficial (>=1.0.46) ; extra == "playwright"
Requires-Dist: anticaptchaofficial (>=1.0.46) ; extra == "requests"
Requires-Dist: anticaptchaofficial (>=1.0.46) ; extra == "selenium"
Requires-Dist: beautifulsoup4 (>=4.11.0) ; extra == "requests"
Requires-Dist: concurrent-log-handler (>=0.9.25,<1.0.0)
Requires-Dist: mss (>=10.2.0,<11.0.0)
Requires-Dist: playwright (>=1.40.0) ; extra == "all"
Requires-Dist: playwright (>=1.40.0) ; extra == "playwright"
Requires-Dist: playwright (>=1.61.0,<2.0.0)
Requires-Dist: requests (>=2.28.0) ; extra == "requests"
Requires-Dist: selenium (>=4.10.0) ; extra == "all"
Requires-Dist: selenium (>=4.10.0) ; extra == "selenium"
Requires-Dist: selenium (>=4.45.0,<5.0.0)
Project-URL: Homepage, https://github.com/Necobgs/utils_rpa
Project-URL: Issues, https://github.com/Necobgs/utils_rpa/issues
Project-URL: Repository, https://github.com/Necobgs/utils_rpa
Description-Content-Type: text/markdown

# utils_rpa

Conjunto de utilitários e configurações para facilitar o desenvolvimento de **RPA (Robotic Process Automation)** com Python.

> **Status:** em desenvolvimento inicial. A estrutura do pacote está pronta, mas as funcionalidades ainda serão implementadas.

## Instalação

```bash
pip install utils-rpa
```

Ou, para desenvolvimento com [Poetry](https://python-poetry.org/):

```bash
poetry install
```

## Requisitos

- Python >= 3.14

## Uso

```python
import utils_rpa

print(utils_rpa.__version__)
```

## Desenvolvimento

Clone o repositório e instale as dependências (incluindo as de desenvolvimento):

```bash
poetry install
```

Rodar os testes:

```bash
poetry run pytest
```

Rodar o linter:

```bash
poetry run ruff check .
```

Gerar o build do pacote:

```bash
poetry build
```

## Licença

Distribuído sob a licença MIT. Veja o arquivo [LICENSE](LICENSE) para mais detalhes.

