-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from dbt-msft/alieus-hotfix-setup.py
HOTFIX setup.py doesn't include materializations folder
- Loading branch information
Showing
4 changed files
with
17 additions
and
11 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
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 @@ | ||
recursive-include dbt/include *.sql *.yml *.md |
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 |
---|---|---|
@@ -1 +1 @@ | ||
version = '0.19.0' | ||
version = '0.19.0.1' |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
|
||
package_name = "dbt-synapse" | ||
authors_list = ["Nandan Hegde", "Anders Swanson"] | ||
authors_list = ["Nandan Hegde", "Chaerin Lee", "Alieu Sanneh", "Anders Swanson"] | ||
|
||
|
||
# get this from a separate file | ||
|
@@ -49,14 +49,9 @@ def _dbt_synapse_version(): | |
author_email="[email protected]", | ||
url="https://github.com/dbt-msft/dbt-synapse", | ||
packages=find_packages(), | ||
package_data={ | ||
"dbt": [ | ||
"include/synapse/dbt_project.yml", | ||
"include/synapse/macros/*.sql", | ||
"include/synapse/macros/**/*.sql", | ||
] | ||
}, | ||
include_package_data=True, | ||
install_requires=[ | ||
"dbt-sqlserver==0.19.0.1", | ||
"dbt-sqlserver~=0.19.0", | ||
"agate>=1.6,<1.6.2" | ||
] | ||
) |