-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 881 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 881 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
27
28
29
#!/usr/bin/env python
from setuptools import find_namespace_packages, setup
from os import path
package_name = "dbt-devnull"
# make sure this always matches dbt/adapters/devnull/__version__.py
package_version = "1.1.2"
description = """The devnull adapter plugin for dbt"""
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=package_name,
version=package_version,
license='Apache',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author="bachng",
author_email="bachng@gmail.com",
url="https://github.com/bachng2017/dbt-devnull",
packages=find_namespace_packages(include=['dbt', 'dbt.*']),
include_package_data=True,
install_requires=[
"dbt-core>=1.1.0",
]
)