-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 848 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 848 Bytes
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.25",
packages=find_packages(),
install_requires=[
"PyYAML", "dataclasses", "transformers", "argparse", "httpx", "inquirer", "ruamel.yaml",
],
entry_points={
"console_scripts": [
"dbt-doc-py=dbt_doc_py.dbt_doc_py:run_async_main",
],
},
author="TextQLLabs",
author_email="lenin@textql.com",
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",
],
)