Skip to content

Commit

Permalink
[dagster-contrib-gcp] fix build to detect sub-packages (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmpadden authored Nov 21, 2024
1 parent b294ac2 commit 1106a5a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions libraries/dagster-contrib-gcp/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dagster_contrib_gcp"
version = "0.0.1"
version = "0.0.2"
description = "Community contributed Google Cloud Platform integration"
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -17,5 +17,9 @@ dev-dependencies = [
"pyright>=1.1.386",
]

[tool.setuptools]
packages = ["dagster_contrib_gcp"]
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages]
find = {exclude= ['dagster_contrib_gcp_tests*']}

0 comments on commit 1106a5a

Please sign in to comment.