-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
57 lines (54 loc) · 1.81 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="jaffle-shop-goes-online",
description="Demo environment for Elementary.",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.6.2",
author="Elementary",
long_description=README,
install_requires=[
"click>=7.0,<9",
"dbt-core>=0.20,<2.0.0",
"elementary-data==0.15.1",
"numpy==1.24.3",
"pydantic==1.10.14",
],
extras_require={
"snowflake": ["dbt-snowflake>=0.20,<2.0.0"],
"bigquery": ["dbt-bigquery>=0.20,<2.0.0"],
"redshift": ["dbt-redshift>=0.20,<2.0.0"],
"postgres": ["dbt-postgres>=0.20,<2.0.0"],
"lineage": [
"snowflake-connector-python[secure-local-storage]>=2.4.1,<2.8.0",
"click>=8,<9",
"requests>=2.7,<3.0.0",
"networkx>=2.3,<3",
"sqllineage==1.2.4",
"pyvis>=0.1,<1",
"sqlparse>=0.3.1,<0.5",
"sqlfluff<0.9.0",
"google-cloud-bigquery>=1.25.0,<3",
"google-api-core>=1.16.0,<3",
"python-dateutil>=2.7.2,<3.0.0",
# temp solution until refactor of utils.dbt
"dbt-bigquery>=0.20,<2.0.0",
# Indirect
"protobuf<4,>=3.13.0",
"typing-extensions<3.11,>=3.7.4",
"flask<1.1.1",
"Jinja2>=2.10.1,<3",
"tomli<2.0.0,>=0.2.6",
"urllib3<1.26,>=1.20",
"MarkupSafe==2.0.1",
],
},
long_description_content_type="text/markdown",
url="https://github.com/elementary-data/jaffle-shop-goes-online",
author_email="[email protected]",
)