Skip to content

Commit

Permalink
Update setup.py (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
stumelius authored Nov 26, 2021
1 parent 479dd7c commit 1566e80
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
from setuptools import setup, find_packages
from pathlib import Path
from setuptools import setup


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

setup(
name="dbt_cloud",
name="dbt-cloud-cli",
version="0.1.0",
description="dbt Cloud command line interface (CLI)",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/data-mie/dbt-cloud-cli",
author="Simo Tumelius",
author_email="[email protected]",
license="Apache Software License",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.6",
packages=find_packages(),
packages=["dbt_cloud"],
install_requires=["requests", "click", "pydantic"],
extras_require={"test": ["pytest"]},
scripts=[],
Expand Down

0 comments on commit 1566e80

Please sign in to comment.