forked from elementary-data/elementary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (68 loc) · 2.28 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
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.5.3",
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>=3.9.0,<3.18.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"],
"spark": ["dbt-spark>=0.20,<2.0.0", "dbt-spark[PyHive]>=0.20,<2.0.0"],
},
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",
],
)