-
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.
- Loading branch information
1 parent
026877d
commit a030c15
Showing
140 changed files
with
1,891 additions
and
259 deletions.
There are no files selected for viewing
Empty file.
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,21 @@ | ||
[project] | ||
name = "dagster-ui-screenshot" | ||
description = "Utility for taking automated screenshots from the Dagster UI" | ||
readme = "README.md" | ||
classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",] | ||
dependencies = [ "click>=6", "pyyaml", "selenium", "typing-extensions>=4",] | ||
requires-python = ">=3.11" | ||
version = "1!0+dev" | ||
[[project.authors]] | ||
name = "Dagster Labs" | ||
email = "[email protected]" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
build-backend = "hatchling.build" | ||
|
||
[project.license] | ||
text = "Apache-2.0" | ||
|
||
[project.scripts] | ||
dagster-ui-screenshot = "dagster_ui_screenshot.cli:main" |
Empty file.
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,20 @@ | ||
[project] | ||
name = "dagster-sphinx" | ||
description = "Dagster-specific sphinx extension." | ||
classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",] | ||
dependencies = [ "sphinx", "sphinx_toolbox",] | ||
requires-python = ">=3.11" | ||
version = "0.0.1" | ||
[[project.authors]] | ||
name = "Elementl" | ||
email = "[email protected]" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
build-backend = "hatchling.build" | ||
|
||
[project.license] | ||
text = "Apache-2.0" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/dagster-io/dagster" |
11 changes: 11 additions & 0 deletions
11
examples/experimental/dagster-airlift/examples/mwaa-example/pyproject.toml
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,11 @@ | ||
[project] | ||
name = "mwaa-example" | ||
dependencies = [ "dagster", "dagster-airlift[core,mwaa]", "dagster-webserver",] | ||
requires-python = ">=3.11" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
build-backend = "hatchling.build" | ||
|
||
[project.optional-dependencies] | ||
test = [ "pytest",] |
12 changes: 12 additions & 0 deletions
12
examples/experimental/dagster-airlift/examples/simple-migration/pyproject.toml
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,12 @@ | ||
[project] | ||
name = "simple-migration" | ||
readme = "README.md" | ||
dependencies = [ "dagster", "dagster-airlift[core,in-airflow]", "dagster-webserver",] | ||
requires-python = ">=3.11" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
build-backend = "hatchling.build" | ||
|
||
[project.optional-dependencies] | ||
test = [ "pytest",] |
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 = "dagster-airlift" | ||
version = "0.0.3" | ||
description = "Tooling to assist with migrating from Airflow to Dagster." | ||
readme = "README.md" | ||
classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",] | ||
requires-python = ">=3.11" | ||
[[project.authors]] | ||
name = "Dagster Labs" | ||
email = "[email protected]" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
build-backend = "hatchling.build" | ||
|
||
[project.license] | ||
text = "Apache-2.0" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-airlift" | ||
|
||
[project.optional-dependencies] | ||
core = [ "dagster",] | ||
in-airflow = [ "apache-airflow>=2.0.0,<2.8", "connexion<3.0.0", "flask-session<0.6.0", "pendulum>=2.0.0,<3.0.0",] | ||
mwaa = [ "boto3",] | ||
dbt = [ "dagster-dbt",] | ||
test = [ "boto3", "dagster-dbt", "dagster-webserver", "dbt-duckdb", "pytest",] |
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,24 @@ | ||
[project] | ||
name = "dagster-blueprints" | ||
version = "1!0+dev" | ||
description = "" | ||
readme = "README.md" | ||
classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",] | ||
dependencies = [ "dagster", "dagster-databricks",] | ||
requires-python = ">=3.11" | ||
[[project.authors]] | ||
name = "Dagster Labs" | ||
email = "[email protected]" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
build-backend = "hatchling.build" | ||
|
||
[project.license] | ||
text = "Apache-2.0" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-blueprints" | ||
|
||
[project.scripts] | ||
dagster-blueprints = "dagster_blueprints.cli:main" |
Empty file.
21 changes: 21 additions & 0 deletions
21
integration_tests/python_modules/dagster-k8s-test-infra/pyproject.toml
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,21 @@ | ||
[project] | ||
name = "dagster-k8s-test-infra" | ||
version = "1+dev" | ||
description = "A Dagster integration for k8s-test-infra" | ||
readme = "README.md" | ||
classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",] | ||
dependencies = [ "dagster", "dagster-aws", "docker",] | ||
requires-python = ">=3.11" | ||
[[project.authors]] | ||
name = "Dagster Labs" | ||
email = "[email protected]" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
build-backend = "hatchling.build" | ||
|
||
[project.license] | ||
text = "Apache-2.0" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-k8s-test-infra" |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
setup( | ||
name="dagster-k8s-test-infra", | ||
version="1+dev", | ||
author="Dagster Labs", | ||
author_email="[email protected]", | ||
license="Apache-2.0", | ||
|
Oops, something went wrong.