-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 991 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
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
import os
from setuptools import find_namespace_packages
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()
package_name = "duckdbt"
package_version = "0.5.0"
description = """The Modern Data Stack in a Python Package"""
setup(
name=package_name,
version=package_version,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author="Josh Wills",
author_email="joshwills+duckdbt@gmail.com",
url="https://github.com/jwills/duckdbt",
packages=find_namespace_packages(include=["duckdbt", "duckdbt.*"]),
include_package_data=True,
install_requires=[
"buenavista[duckdb]~=0.4.0",
"dbt-duckdb>=1.5.0",
"duckdb>=0.8.0",
"fastapi[all]>=0.80.0,<1.0.0",
"psycopg2-binary",
"duckdb-engine",
],
)