-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (34 loc) · 1.13 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
"""dbt-unit-test module."""
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
# Runtime Requirements.
inst_reqs = ["click", "jinja2"]
# Dev Requirements
extra_reqs = {
"test": ["pytest", "pytest-cov"],
"dev": ["pytest", "pytest-cov", "pre-commit"],
}
setup(
name="dbt-unit-test",
version="0.0.5",
description=u"A tiny framework for testing reusable code inside of dbt models",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
keywords="sql dbt test unittest",
author="Benjamin Ryon",
author_email="benjamin.ryon@aofl.com",
url="https://github.com/AgeOfLearning/dbt-unit-test",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
entry_points={"console_scripts": ["dut = dbt_unit_test.app:dut"]},
)