Metadata-Version: 2.4
Name: healthdatalayer
Version: 2.0.0
Summary: Health Datalayer to access data from different sources
Author: Jesus Martinez
Author-email: jesusmartinez@noosds.com
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Requires-Dist: wheel
Requires-Dist: twine
Requires-Dist: sqlmodel
Requires-Dist: psycopg2-binary
Requires-Dist: python-dotenv
Requires-Dist: azure-keyvault-secrets
Requires-Dist: azure-identity
Requires-Dist: alembic
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# health-data-layer

## Resume
Centralized data layer that defines models, repositories, and database interactions for the system.

## Database Versioning (Alembic)
This project uses Alembic to manage database schema changes.

Whenever a model or schema modification is made, follow these steps:

```bash
alembic revision --autogenerate -m "describe change"
alembic upgrade head
