-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 842 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 842 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
#!/usr/bin/env python
from setuptools import find_namespace_packages, setup
package_name = "dbt-mindsdb"
# make sure this always matches dbt/adapters/mindsdb/__version__.py
package_version = "1.0.3"
description = """The dbt adapter plugin for connecting to MindsDB"""
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name=package_name,
version=package_version,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author='MindsDB Inc',
author_email='admin@mindsdb.com',
url='https://github.com/mindsdb/dbt-mindsdb',
packages=find_namespace_packages(include=['dbt', 'dbt.*']),
include_package_data=True,
install_requires=[
"dbt-core>=1.0.1",
"mysql-connector-python~=8.0.22",
]
)