From 5f3782d3a78f1a5c4570d0f25729afe740b050e7 Mon Sep 17 00:00:00 2001 From: Christopher DeCarolis Date: Fri, 22 Nov 2024 10:01:32 -0800 Subject: [PATCH] [dagster-airlift] Dep-less setup.py (#26091) ## Summary & Motivation Get rid of rich Airlift description within setup.py - make sure it's not dependent on any other files which might not be downloaded as part of the package for now. --- python_modules/libraries/dagster-airlift/setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python_modules/libraries/dagster-airlift/setup.py b/python_modules/libraries/dagster-airlift/setup.py index c7b24fbad9c2d..3dcce074b5fd6 100644 --- a/python_modules/libraries/dagster-airlift/setup.py +++ b/python_modules/libraries/dagster-airlift/setup.py @@ -46,9 +46,7 @@ def get_version() -> str: author="Dagster Labs", author_email="hello@dagsterlabs.com", license="Apache-2.0", - description="Tooling to assist with migrating from Airflow to Dagster.", - long_description=Path("README.md").read_text(), - long_description_content_type="text/markdown", + description="A toolkit for observing integration and migration between Apache Airflow and Dagster.", url=( "https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/" "dagster-airlift"