lolafect/setup.py

37 lines
978 B
Python
Raw Permalink Normal View History

2022-12-30 10:26:28 +01:00
import pathlib
from setuptools import setup
about = {}
here = pathlib.Path(__file__).absolute()
with open("lolafect/__version__.py", "r") as f:
exec(f.read(), about)
with open("README.md", "r") as f:
readme = f.read()
setup(
name="lolafect",
version=about["__version__"],
description="Lolafect is a collection of Python bits that help us build our Prefect flows.",
long_description=readme,
long_description_content_type="text/markdown",
author="data-team",
author_email="data@lolamarket.com",
url="https://github.com/lolamarket/data-lolafect",
packages=["lolafect"],
package_dir={"lolafect": "lolafect"},
include_package_data=True,
python_requires=">=3.7",
2023-01-23 15:00:27 +01:00
install_requires=[
"prefect==1.2.2",
"requests==2.28.1",
"boto3==1.26.40",
"trino==0.321.0",
"sshtunnel==0.4.0",
2023-01-26 17:36:46 +01:00
"PyMySQL==1.0.2",
2023-02-02 17:20:46 +01:00
"great_expectations==0.15.45",
"SQLAlchemy==1.4.46",
2023-01-23 15:00:27 +01:00
],
2022-12-30 10:26:28 +01:00
)