diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2c30769..87e9ad5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,7 +69,8 @@ jobs: runs-on: ubuntu-latest strategy: - fail-fast: false + fail-fast: true + max-parallel: 1 matrix: python-version: [ {setup: '3.7', tox: 'py37'}, diff --git a/README.md b/README.md index c8de51a..9879fc7 100644 --- a/README.md +++ b/README.md @@ -3,16 +3,11 @@ Infer logo dbt logo

- # dbt-infer diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 77d47cc..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,4 +0,0 @@ - -[build-system] -requires = ["setuptools"] -build-backend = "setuptools.build" diff --git a/setup.py b/setup.py index 8a84b51..04a4a3b 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,33 @@ +import os + from setuptools import find_namespace_packages, setup +this_directory = os.path.abspath(os.path.dirname(__file__)) +with open(os.path.join(this_directory, "README.md")) as f: + long_description = f.read() + setup( name="dbt-infer", version="1.2.0", description="The Infer adapter plugin for dbt", - long_description="The Infer adapter plugin for dbt", + long_description=long_description, + long_description_content_type="text/markdown", author="Infer", author_email="support@inferlabs.io", url="https://github.com/inferlabs/dbt-infer", packages=find_namespace_packages(include=["dbt", "dbt.*"]), include_package_data=True, install_requires=["dbt-core>=1.2.0", "requests"], + classifiers=[ + "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: Apache Software License", + "Operating System :: Microsoft :: Windows", + "Operating System :: MacOS :: MacOS X", + "Operating System :: POSIX :: Linux", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + ], + python_requires=">=3.7", )