Added requirements to project

This commit is contained in:
Pablo Martin 2023-01-23 15:00:27 +01:00
parent dc732fc34d
commit fae5888c52
2 changed files with 11 additions and 2 deletions

View file

@ -3,4 +3,6 @@ requests==2.28.1
boto3==1.26.40
pytest==7.2.0
httpretty==1.1.4
trino==0.321.0
trino==0.321.0
sshtunnel==0.4.0
PyMySQL==1.0.2

View file

@ -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"
],
)