forked from z3z1ma/dbt-osmosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (74 loc) · 2.47 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "dbt-osmosis"
version = "0.12.6"
description = "A dbt server and suite of optional developer tools to make developing with dbt delightful."
authors = ["z3z1ma <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = ["dbt", "server", "streamlit", "git", "diff"]
documentation = "https://github.com/z3z1ma/dbt-osmosis"
repository = "https://github.com/z3z1ma/dbt-osmosis"
[tool.poetry.dependencies]
python = ">=3.8,<3.9.7 || >3.9.7,<3.12"
click = ">7"
dbt-core = ">=1"
"ruamel.yaml" = ">=0.17"
rich = ">=10"
pydantic = "<2"
GitPython = ">3,<4"
# Streamlit Workbench Dependencies
streamlit = { version = ">=1.20.0", optional = true }
streamlit-ace = { version = ">=0.1.0", optional = true }
ydata-profiling = { version = ">=3.6.0", optional = true }
feedparser = { version = "^6.0.10", optional = true }
streamlit-elements-fluence = { version = ">=0.1.4", optional = true }
# Testing duckdb + sqlite
dbt-duckdb = { version = ">=1.0.0", optional = true }
dbt-sqlite = { version = ">=1.0.0", optional = true }
dbt-postgres = { version = ">=1.0.0", optional = true }
openai = "^0.28.0"
[tool.poetry.extras]
duckdb = ["dbt-duckdb"]
sqlite = ["dbt-sqlite"]
postgres = ["dbt-postgres"]
workbench = [
"streamlit",
"streamlit-ace",
"ydata-profiling",
"feedparser",
"streamlit-elements-fluence",
]
[tool.poetry.group.dev.dependencies]
black = ">=21.9b0"
mypy = ">=0.910"
pylint = ">=2.11.1"
pytest = "^7.4.2"
pre-commit = ">3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black] # https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file
line-length = 100
target-version = ["py38", "py39", "py310", "py311"]
preview = true
[tool.isort] # https://pycqa.github.io/isort/docs/configuration/options.html
color_output = true
line_length = 100
profile = "black"
src_paths = ["src"]
include_trailing_comma = true
[tool.ruff] # https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
line-length = 100
[tool.poetry.scripts]
dbt-osmosis = 'dbt_osmosis.main:cli'