forked from data-mie/dbt-cloud-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from pathlib import Path
from setuptools import setup, find_packages
README = (Path(__file__).parent / "README.md").read_text()
setup(
name="dbt-cloud-cli",
version="0.7.6",
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(exclude=("tests",)),
install_requires=[
"requests",
"click",
"pydantic==1.10.10",
"mergedeep",
"snowflake-sqlalchemy",
"ruamel.yaml",
"sqlalchemy>=1.3.18",
"rich>=12.0.0",
],
extras_require={
"test": ["pytest", "pytest-cov", "pytest-datadir", "requests-mock"],
"lint": ["black"],
"demo": ["inquirer", "art"],
},
scripts=[],
entry_points={"console_scripts": ["dbt-cloud = dbt_cloud.cli:dbt_cloud"]},
package_data={"dbt_cloud": ["VERSION"]}
)