From 0d3fb8b1efae559ab047a33aa12e6faec124b934 Mon Sep 17 00:00:00 2001 From: David Gasquez Date: Thu, 28 Nov 2024 14:44:56 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=94=A7=20clean=20up=20.gitignore?= =?UTF-8?q?=20and=20update=20build=20configuration=20in=20pyproject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed dbt-related entries from .gitignore to streamline ignored files. Updated the build configuration in pyproject.toml by removing dbt package inclusion, aligning with the recent refactor that eliminated dbt integration. These changes enhance project organization and maintainability. --- .gitignore | 5 ----- pyproject.toml | 3 --- 2 files changed, 8 deletions(-) diff --git a/.gitignore b/.gitignore index 25d0893..0fb67dd 100644 --- a/.gitignore +++ b/.gitignore @@ -128,11 +128,6 @@ dmypy.json # Pyre type checker .pyre/ -# dbt -dbt_packages/ -logs/ -dbt/.user.yml - # Ignore everything under data except datasets/.gitkeep data/** !data/.gitkeep diff --git a/pyproject.toml b/pyproject.toml index 59fa066..4f4f364 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,5 @@ dev = ["dagster-webserver>=1.9.3", "ipykernel>=6.29.5"] requires = ["hatchling"] build-backend = "hatchling.build" -[tool.hatch.build] -include = ["datadex/**/*.py", "dbt/**/*"] - [tool.hatch.build.targets.wheel] packages = ["datadex"]