forked from elementary-data/elementary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
86 lines (80 loc) · 3.07 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import pathlib
from setuptools import setup, find_packages
# The directory containing this file.
HERE = pathlib.Path(__file__).parent
# The text of the README file.
README = (HERE / "README.md").read_text()
setup(
name='elementary-data',
description='Data monitoring and lineage',
version='0.4.8',
packages=find_packages(),
python_requires='>=3.6.2',
entry_points='''
[console_scripts]
edr=elementary.cli.cli:cli
''',
author="Elementary",
package_data={"": ["header.html", "index.html", "dbt_project/*", "dbt_project/macros/*", "dbt_project/models/*",
"dbt_project/models/alerts/*"]},
keyword="data, lineage, data lineage, data warehouse, DWH, observability, data monitoring, data observability, "
"Snowflake, BigQuery, Redshift, data reliability, analytics engineering",
long_description=README,
install_requires=[
'click>=7.0,<9',
'pyfiglet',
'dbt-core>=0.20,<2.0.0',
'requests<3.0.0',
'beautifulsoup4<5.0.0',
'posthog<3.0.0',
'boto3<2.0.0',
'google-cloud-storage<3.0.0',
'ruamel.yaml<1.0.0',
'alive-progress<=2.3.1',
'slack-sdk<4.0',
'pydantic<2.0',
'networkx>=2.3,<3'
],
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'],
'databricks': ['dbt-databricks>=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",
license='',
url='https://github.com/elementary-data/elementary',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)