diff --git a/pyproject.toml b/pyproject.toml index de7ff11..512581c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "SQLModel-CRUD-manager" -version = "0.1.1" +version = "0.1.2" description = "The SQLModel CRUD Manager is a Python library that facilitates common Create, Read, Update, and Delete (CRUD) operations on SQLModel entities within a FastAPI application. This library simplifies database interactions and provides an easy-to-use interface for managing SQLModel entities." authors = ["Edkar Chachati "] license = "MIT" readme = "README.md" repository = "https://github.com/EChachati/SQLModel-CRUD-manager" documentation = "https://github.com/EChachati/SQLModel-CRUD-manager/blob/master/README.md" -packages = [{include = "sqlmodel-crud-manager"}] +packages = [{include = "sqlmodel_crud_manager"}] [tool.poetry.dependencies] python = "^3.10" fastapi = "^0.105.0" diff --git a/sqlmodel-crud-manager/__init__.py b/sqlmodel_crud_manager/__init__.py similarity index 100% rename from sqlmodel-crud-manager/__init__.py rename to sqlmodel_crud_manager/__init__.py diff --git a/sqlmodel-crud-manager/crud.py b/sqlmodel_crud_manager/crud.py similarity index 100% rename from sqlmodel-crud-manager/crud.py rename to sqlmodel_crud_manager/crud.py