Skip to content

Commit

Permalink
setup py
Browse files Browse the repository at this point in the history
  • Loading branch information
benpankow committed Jul 30, 2024
1 parent 15a6898 commit a50bf22
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions python_modules/libraries/dagster-powerbi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ def get_version() -> str:
# return version["__version__"]


# TODO - add your package to scripts/install_dev_python_modules.py

ver = get_version()
# dont pin dev installs to avoid pip dep resolver issues
pin = "" if ver == "1!0+dev" else f"=={ver}"
Expand All @@ -22,7 +20,7 @@ def get_version() -> str:
author="Dagster Labs",
author_email="[email protected]",
license="Apache-2.0",
description="", # TODO - fill out description
description="Build assets representing Power BI dashboards and reports.",
url=(
"https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/"
"dagster-powerbi"
Expand All @@ -39,7 +37,6 @@ def get_version() -> str:
packages=find_packages(exclude=["dagster_powerbi_tests*"]),
install_requires=[
f"dagster{pin}",
# TODO - fill in remaining dependencies
],
zip_safe=False,
)

0 comments on commit a50bf22

Please sign in to comment.