Skip to content

Commit

Permalink
Merge pull request #1 from inferlabs/fix_setuptools_build
Browse files Browse the repository at this point in the history
Fix setuptools build
  • Loading branch information
erik-infer committed Dec 2, 2022
2 parents 572ae14 + 9a49a2f commit ed7fd18
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -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'},
Expand Down
9 changes: 2 additions & 7 deletions README.md
Expand Up @@ -3,16 +3,11 @@
<img src="lockup_black.png" alt="Infer logo" width="350" style="margin-right: 50px"/>
<img src="https://raw.githubusercontent.com/dbt-labs/dbt/ec7dee39f793aa4f7dd3dae37282cc87664813e4/etc/dbt-logo-full.svg" alt="dbt logo" width="250"/>
</p>
<!--
<p align="center">
<a href="https://github.com/dbt-labs/dbt-bigquery/actions/workflows/main.yml">
<img src="https://github.com/dbt-labs/dbt-bigquery/actions/workflows/main.yml/badge.svg?event=push" alt="Unit Tests Badge"/>
</a>
<a href="https://github.com/dbt-labs/dbt-bigquery/actions/workflows/integration.yml">
<img src="https://github.com/dbt-labs/dbt-bigquery/actions/workflows/integration.yml/badge.svg?event=push" alt="Integration Tests Badge"/>
<a href="https://github.com/inferlabs/dbt-infer/actions/workflows/main.yml">
<img src="https://github.com/inferlabs/dbt-infer/actions/workflows/main.yml/badge.svg?event=push" alt="Unit Tests Badge"/>
</a>
</p>
-->

# dbt-infer

Expand Down
4 changes: 0 additions & 4 deletions pyproject.toml

This file was deleted.

21 changes: 20 additions & 1 deletion 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",
)

0 comments on commit ed7fd18

Please sign in to comment.