diff --git a/setup.py b/setup.py index bc74a61b..78adbdf7 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ # get this from a separate file -def _dbt_presto_version() -> str: +def _dbt_athena_version() -> str: _version_path = os.path.join( this_directory, "dbt", "adapters", "athena", "__version__.py" ) @@ -25,7 +25,7 @@ def _dbt_presto_version() -> str: return match.group(1) -package_version = _dbt_presto_version() +package_version = _dbt_athena_version() description = """The athena adapter plugin for dbt (data build tool)""" @@ -61,5 +61,7 @@ def _dbt_presto_version() -> str: install_requires=[ "dbt-core==0.21.0", "pyathena==2.2.0", + "boto3==1.18.12", + "tenacity==6.3.1", ] )