forked from re-data/re-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 832 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import find_packages, setup
setup(
version="0.0.5",
author="redata-team",
description="Monitoring system for data teams",
name="redata",
install_requires=[
"apache-airflow",
"psycopg2-binary",
"grafana-api",
"cattrs==1.0.0",
"marshmallow-sqlalchemy==0.23.1",
"marshmallow<3.0.0,>=2.18.0",
"pyexasol",
"pymysql",
"cryptography",
"pybigquery",
"alembic",
"scipy",
"flask",
"flask_admin",
"Flask-Login",
"waitress",
"sqlalchemy-redshift",
"snowflake-sqlalchemy",
],
extras_require={"dev": ["isort", "black", "pre-commit"]},
entry_points={
"console_scripts": ["redata=redata.command_line:main"],
},
packages=find_packages(),
)