Metadata-Version: 2.4
Name: openheal
Version: 0.1.1
Summary: Plataforma Open Source para Saúde — módulos reutilizáveis para análise de dados clínicos.
Project-URL: Homepage, https://openheal.ai
Project-URL: Repository, https://github.com/openheal-ai/openheal
Project-URL: Issues, https://github.com/openheal-ai/openheal/issues
Author: OpenHeal Contributors
License: MIT License
        
        Copyright (c) 2025 OpenHeal Contributors
        
        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, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: abbott,clinical-data,endocrinology,glycemia,health
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Requires-Python: >=3.11
Requires-Dist: openpyxl>=3.1
Requires-Dist: pandas>=2.0
Provides-Extra: clinical-ai
Requires-Dist: faster-whisper>=1.0; extra == 'clinical-ai'
Requires-Dist: pydantic>=2.0; extra == 'clinical-ai'
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Description-Content-Type: text/markdown

# openheal

Plataforma Open Source para Saúde — módulos reutilizáveis para análise de dados clínicos.

## Instalação

```bash
pip install openheal
```

## Módulos disponíveis

### `openheal.endocrinology.abbott_system`

Análise de dados de glicemia hospitalar a partir de planilhas exportadas pelo sistema Abbott.

```python
from openheal.endocrinology.abbott_system.spreadsheet_reader import SpreadsheetReader
from openheal.endocrinology.abbott_system.stats import StatisticsEngine

# Ler planilha Abbott
reader = SpreadsheetReader(path="glicemias.xlsx")
df = reader.read()

# Calcular todos os indicadores
engine = StatisticsEngine()
resultados = engine.run_all(df)
```

## Publicar no PyPI

```bash
# Instalar ferramentas de build
pip install build twine

# Construir pacote
python -m build

# Enviar para PyPI
twine upload dist/*
```

## Licença

MIT
