-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (35 loc) · 1007 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "opendbt"
version = "0.12.0"
authors = [
{ name = "Memiiso Organization" },
]
description = "opendbt dbt-core with additional features"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["dbt-core", "dbt"]
license = { text = "Apache License 2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
]
dependencies = [
"dbt-duckdb>=1.6",
"sqlfluff",
"sqlfluff-templater-dbt"
]
[project.optional-dependencies]
airflow = ["apache-airflow"]
test = ["testcontainers>=3.7,<4.10", "apache-airflow", "pylint", "dlt[duckdb]"]
[tool.setuptools]
include-package-data = true
packages = ["opendbt"]
[project.scripts]
opendbt = "opendbt.__main__:main"
[project.urls]
Homepage = "https://github.com/memiiso/opendbt"
Documentation = "https://github.com/memiiso/opendbt"
Repository = "https://github.com/memiiso/opendbt"