-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: consolidate config to pyproject.toml only
- Loading branch information
Showing
7 changed files
with
30 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
...modules/dagster/dagster/_generate/templates/CODE_LOCATION_NAME_PLACEHOLDER/setup.cfg.tmpl
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
..._modules/dagster/dagster/_generate/templates/CODE_LOCATION_NAME_PLACEHOLDER/setup.py.tmpl
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
python_modules/dagster/dagster/_generate/templates/REPO_NAME_PLACEHOLDER/pyproject.toml
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
python_modules/dagster/dagster/_generate/templates/REPO_NAME_PLACEHOLDER/pyproject.toml.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
2 changes: 0 additions & 2 deletions
2
python_modules/dagster/dagster/_generate/templates/REPO_NAME_PLACEHOLDER/setup.cfg.tmpl
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
python_modules/dagster/dagster/_generate/templates/REPO_NAME_PLACEHOLDER/setup.py.tmpl
This file was deleted.
Oops, something went wrong.