Skip to content

Commit

Permalink
refactor: consolidate config to pyproject.toml only
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrtly committed Oct 15, 2024
1 parent e12a401 commit 8244048
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ build-backend = "setuptools.build_meta"
[tool.dagster]
module_name = "{{ code_location_name }}.definitions"
code_location_name = "{{ code_location_name }}"

[tool.setuptools.packages.find]
exclude=["{{ code_location_name }}_tests"]

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[project]
name = "{{ repo_name }}"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.8,<3.13"
dependencies = [
"dagster",
"dagster-cloud",
]

[project.optional-dependencies]
dev = [
"dagster-webserver",
"pytest",
]

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

[tool.dagster]
module_name = "{{ repo_name }}.definitions"
code_location_name = "{{ repo_name }}"

[tool.setuptools.packages.find]
exclude=["{{ repo_name }}_tests"]

This file was deleted.

This file was deleted.

0 comments on commit 8244048

Please sign in to comment.