diff --git a/docs/quickstart.mdx b/docs/quickstart.mdx index 1d7cf788d..e57757b6e 100644 --- a/docs/quickstart.mdx +++ b/docs/quickstart.mdx @@ -52,9 +52,8 @@ Make sure to copy the packages that are relevant to your dbt version. ```yml packages.yml packages: - package: elementary-data/elementary - version: 0.5.0 - ## compatible with Elementary CLI version 0.5.0 - ## see docs: https://docs.elementary-data.com/ + version: 0.5.1 + ## Docs: https://docs.elementary-data.com ``` **For dbt >=1.0.0 \<1.2.0:** @@ -62,9 +61,8 @@ packages: ```yml packages.yml packages: - package: elementary-data/elementary - version: 0.5.0 - ## compatible with Elementary CLI version 0.5.0 - ## see docs: https://docs.elementary-data.com/ + version: 0.5.1 + ## Docs: https://docs.elementary-data.com ## !! Important !! For dbt <1.2.0 ## ## (Prevents dbt_utils versions exceptions) ## diff --git a/elementary/monitor/dbt_project/packages.yml b/elementary/monitor/dbt_project/packages.yml index 916142aca..57ab86a7a 100644 --- a/elementary/monitor/dbt_project/packages.yml +++ b/elementary/monitor/dbt_project/packages.yml @@ -2,4 +2,4 @@ packages: - package: dbt-labs/dbt_utils version: [">=0.8.0", "<0.9.0"] - package: elementary-data/elementary - version: 0.5.0 + version: 0.5.1 diff --git a/setup.py b/setup.py index c1de72e8b..aaf9bf8df 100644 --- a/setup.py +++ b/setup.py @@ -9,58 +9,64 @@ README = (HERE / "README.md").read_text() setup( - name='elementary-data', - description='Data monitoring and lineage', - version='0.5.2', + name="elementary-data", + description="Data monitoring and lineage", + version="0.5.3", packages=find_packages(), - python_requires='>=3.6.2', - entry_points=''' + 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/*"]}, + 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", + "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' + "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'] + "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='or@elementary-data.com', + license="", + url="https://github.com/elementary-data/elementary", + author_email="or@elementary-data.com", 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', + "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", ], )