forked from TextQLLabs/dbt-doc-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 833 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="dbt-doc-py",
version="0.1.17",
packages=find_packages(),
install_requires=[
"PyYAML", "dataclasses", "transformers", "argparse", "httpx", "inquirer",
],
entry_points={
"console_scripts": [
"dbt-doc-py=dbt_doc_py.dbt_doc_py:run_async_main",
],
},
author="TextQLLabs",
author_email="[email protected]",
description="Automatically generate docs for undocumented DBT models.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/TextQLLabs/dbt-doc-py.git",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
],
)