Skip to content

Commit

Permalink
maint: add build system configuration to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
cmpadden committed Nov 7, 2024
1 parent 11fa4cf commit 7e65390
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libraries/_template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ dev-dependencies = [
"pyright>=1.1.386",
]

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

[tool.setuptools]
packages = ["example_integration"]
4 changes: 4 additions & 0 deletions libraries/dagster-contrib-modal/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@ dev-dependencies = [
"pyright>=1.1.386",
]

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

[tool.setuptools]
packages = ["dagster_contrib_modal"]
4 changes: 4 additions & 0 deletions libraries/dagster-hex/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,9 @@ dev-dependencies = [
"pyright>=1.1.386",
]

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

[tool.setuptools]
packages = ["dagster_hex"]
7 changes: 7 additions & 0 deletions libraries/dagster-hightouch/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ dependencies = [
dev-dependencies = [
"pyright>=1.1.386",
]

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

[tool.setuptools]
packages = ["dagster_hightouch"]

0 comments on commit 7e65390

Please sign in to comment.