-
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
Showing
1 changed file
with
1 addition
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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}" | ||
|
@@ -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" | ||
|
@@ -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, | ||
) |