From fae5888c5264db342fe1073e072cf503082b3925 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Mon, 23 Jan 2023 15:00:27 +0100 Subject: [PATCH] Added requirements to project --- requirements-dev.txt | 4 +++- setup.py | 9 ++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index f92f5bc..2adb75e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -3,4 +3,6 @@ requests==2.28.1 boto3==1.26.40 pytest==7.2.0 httpretty==1.1.4 -trino==0.321.0 \ No newline at end of file +trino==0.321.0 +sshtunnel==0.4.0 +PyMySQL==1.0.2 \ No newline at end of file diff --git a/setup.py b/setup.py index ec38921..3ac4e7f 100644 --- a/setup.py +++ b/setup.py @@ -23,5 +23,12 @@ setup( package_dir={"lolafect": "lolafect"}, include_package_data=True, python_requires=">=3.7", - install_requires=["prefect==1.2.2", "requests==2.28.1", "boto3==1.26.40", "trino==0.321.0"], + install_requires=[ + "prefect==1.2.2", + "requests==2.28.1", + "boto3==1.26.40", + "trino==0.321.0", + "sshtunnel==0.4.0", + "PyMySQL==1.0.2" + ], )