-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
76 lines (66 loc) · 1.77 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
[build-system]
requires = ["hatchling==1.26.3"] # hatch-vcs
build-backend = "hatchling.build"
[project]
name = "dbt-osmosis"
version = "1.1.7"
description = "A dbt utility for managing YAML to make developing with dbt more delightful."
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "z3z1ma", email = "[email protected]" }]
keywords = ["dbt", "yaml", "osmosis"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9,<3.13"
dependencies = [
"click>7,<9",
"dbt-core>=1.8,<=1.10",
"ruamel.yaml~=0.18.7",
"rich>=10",
"pluggy>=1.5.0,<2",
"typing-extensions~=4.12.2 ; python_version < '3.10'",
"mysql-mimic>=2.5.7",
]
[project.optional-dependencies]
workbench = [
"streamlit>=1.20.0,<1.34.0",
"streamlit-ace~=0.1.1",
"ydata-profiling~=4.12.1",
"feedparser~=6.0.11",
"streamlit-elements-fluence>=0.1.4",
"dbt-duckdb>=1.8.0,<=1.10",
"setuptools>=70",
]
openai = ["openai~=1.58.1"]
dev = [
"ruff~=0.8.4",
"pytest~=8.3.4",
"pre-commit>3.0.0,<5",
"dbt-duckdb>=1.0.0,<2",
]
[project.scripts]
"dbt-osmosis" = "dbt_osmosis.cli.main:cli"
[tool.uv]
override-dependencies = ["protobuf>=5.0,<6.0"]
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311", "py312"]
preview = true
[tool.isort]
color_output = true
line_length = 100
profile = "black"
src_paths = ["src"]
include_trailing_comma = true
[tool.ruff]
line-length = 100
preview = true