Skip to content

Commit

Permalink
Fix packages in setup.py and bump version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
datamie-simo committed Jan 27, 2022
1 parent cb247ee commit f701df6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from pathlib import Path
from setuptools import setup
from setuptools import setup, find_packages


README = (Path(__file__).parent / "README.md").read_text()

setup(
name="dbt-cloud-cli",
version="0.5.0",
version="0.5.1",
description="dbt Cloud command line interface (CLI)",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -20,7 +20,7 @@
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.6",
packages=["dbt_cloud"],
packages=find_packages(exclude=("tests",)),
install_requires=["requests", "click", "pydantic", "mergedeep"],
extras_require={
"test": ["pytest", "pytest-cov", "pytest-datadir", "requests-mock"],
Expand Down

0 comments on commit f701df6

Please sign in to comment.