-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (38 loc) · 1.18 KB
/
setup.py
File metadata and controls
executable file
·45 lines (38 loc) · 1.18 KB
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
43
44
45
#!/usr/bin/env python
from setuptools import setup
VERSION = "0.1.6"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="dbt_docstring",
version=VERSION,
description="Docstring dbt test & documentation in SQL file",
long_description=long_description,
long_description_content_type="text/markdown",
author="Daigo Tanaka, Anelen Co., LLC",
url="https://github.com/anelendata/dbt_docstring",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
install_requires=[
"setuptools>=40.3.0",
"pyyaml>=5.1",
],
entry_points="""
[console_scripts]
dbtdocstr=dbt_docstring:main
""",
packages=["dbt_docstring"],
package_data={
# Use MANIFEST.ini
},
include_package_data=True
)