forked from memsql/dbt-singlestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 771 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
#!/usr/bin/env python
from setuptools import find_namespace_packages, setup
package_name = "dbt-singlestore"
# make sure this always matches dbt/adapters/singlestore/__version__.py
package_version = "1.7.1"
description = """The singlestore adapter plugin for dbt"""
setup(
name=package_name,
version=package_version,
description=description,
long_description=description,
author="SingleStore Inc.",
author_email="support@singlestore.com",
url="https://github.com/memsql/dbt-singlestore",
license="Apache License 2.0",
packages=find_namespace_packages(include=['dbt', 'dbt.*']),
include_package_data=True,
install_requires=[
"dbt-core>=1.0.0",
"singlestoredb==1.2.0",
"dataclasses_json>=0.5.6"
]
)