-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (29 loc) · 1.05 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
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.8.2",
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"],
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"]},
)