-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use pyproject.toml instead of setup.py (#33)
* Use pyproject.toml instead of setup.py * Use pyproject.toml instead of setup.py * Use pyproject.toml instead of setup.py
- Loading branch information
1 parent
e5d8bbd
commit b91ffae
Showing
5 changed files
with
43 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
logs | ||
**.duckdb | ||
**.user.yml | ||
reset.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "opendbt" | ||
version = "0.8.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.9", "apache-airflow"] | ||
|
||
[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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters