From fa5a0fdbc4fb14d489d0718e40f6fe289e7c0156 Mon Sep 17 00:00:00 2001 From: Edkar Chachati Date: Fri, 22 Dec 2023 18:27:40 -0400 Subject: [PATCH] update package and version --- pyproject.toml | 4 ++-- {sqlmodel-crud-manager => sqlmodel_crud_manager}/__init__.py | 0 {sqlmodel-crud-manager => sqlmodel_crud_manager}/crud.py | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {sqlmodel-crud-manager => sqlmodel_crud_manager}/__init__.py (100%) rename {sqlmodel-crud-manager => sqlmodel_crud_manager}/crud.py (100%) 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