Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgafni committed Aug 22, 2024
1 parent 026877d commit a030c15
Show file tree
Hide file tree
Showing 140 changed files with 1,891 additions and 259 deletions.
Empty file.
21 changes: 21 additions & 0 deletions docs/dagster-ui-screenshot/pyproject.toml
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.
20 changes: 20 additions & 0 deletions docs/sphinx/_ext/dagster-sphinx/pyproject.toml
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"
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",]
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",]
27 changes: 27 additions & 0 deletions examples/experimental/dagster-airlift/pyproject.toml
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",]
24 changes: 24 additions & 0 deletions examples/experimental/dagster-blueprints/pyproject.toml
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.
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"
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

setup(
name="dagster-k8s-test-infra",
version="1+dev",
author="Dagster Labs",
author_email="[email protected]",
license="Apache-2.0",
Expand Down
Loading

0 comments on commit a030c15

Please sign in to comment.