-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
56 lines (49 loc) · 1.14 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
[project]
name = "dbtc"
version = "0.11.5"
description = "An unaffiliated python wrapper for dbt Cloud APIs"
authors = [
{name = "Doug Guthrie", email = "[email protected]"},
]
documentation = "https://dbtc.dpguthrie.com"
keywords = ["dbt", "requests", "API", "dbt Cloud"]
license = "MIT"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"requests>=2.27.1",
"typer[all]>=0.9.0",
"pydantic>=2.5.3",
"pyarrow>=15.0.0",
"pandas<2.2.0",
]
extend-select = ["I"]
[project.scripts]
dbtc = "dbtc.cli:main"
[tool.uv]
dev-dependencies = [
"pre-commit>=2.17.0",
"mypy>=0.931",
"pytest>=7.0.1",
"pytest-dependency>=0.5.1",
"types-requests>=2.27.13",
"ipython>=8.2.0",
"coverage>=6.3.2",
"pytest-cov>=3.0.0",
"mkdocs-material>=9.5.2",
"ruff>=0.6.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402"]