From 8665b6f47b7ddcf4b99cbcf6d8f519ad0cc503b7 Mon Sep 17 00:00:00 2001 From: Matheus Toledo Date: Mon, 16 Jun 2025 15:08:13 -0300 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor:=20remove=20unnec?= =?UTF-8?q?essary=20blank=20lines=20and=20adjust=20package=20path=20in=20p?= =?UTF-8?q?yproject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 805875b..5bc9e75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,6 @@ requires = ["hatchling"] build-backend = "hatchling.build" - [project] name = "Pilgrim" version = "0.0.1" @@ -20,12 +19,16 @@ classifiers = [ dependencies = [ "sqlalchemy" ] + [template.plugins.default] src-layout = true + [project.urls] Homepage = "https://git.gustavomiranda.xyz/GHMiranda/Pilgrim" Issues = "https://git.gustavomiranda.xyz/GHMiranda/Pilgrim" + [tool.hatch.build.targets.wheel] -packages = ["src/pilgrim"] +packages = ["src"] + [project.scripts] pilgrim = "pilgrim:main"