-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (58 loc) · 1.61 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
[tool.poetry]
authors = ["Dades <[email protected]>"]
description = ""
name = "jardiner"
readme = "README.md"
version = "0.2.0"
[tool.poetry.dependencies]
pandas = "^2.0.0"
pendulum = "^2.1.2"
python = ">=3.10,<3.12"
python-dotenv = "^0.21.0"
requests = "^2.28.1"
sqlalchemy = "^1.4.41,<1.4.49" # https://github.com/python-poetry/poetry/issues/8529
typer = "^0.6.1"
pydantic = {version = "<2", extras = ["dotenv"]}
loguru = "^0.7.0"
elementary-data = "^0.14.1"
dbt-postgres = "^1.8.2"
[tool.poetry.group.dev.dependencies]
deptry = "^0.6.3"
ipdb = "^0.13.9"
ipykernel = "^6.21.3"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.9"
pymdown-extensions = "^10.7"
pytest = "^7.1.3"
git-changelog = "^2.1.0"
pre-commit = "^3.3.3"
sqlfluff = "^2.3.5"
sqlfluff-templater-dbt = "^2.3.5"
black = "^24.1.1"
[tool.poetry.group.mkdocs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.9"
mkdocs-material-extensions = "^1.1.1"
pymdown-extensions = "^10.7"
mkdocs-git-revision-date-localized-plugin = "^1.2.4"
[tool.poetry.group.dbt-deps.dependencies]
elementary-data = "^0.14.1"
dbt-postgres = "^1.8.2"
[tool.poetry.group.airflow.dependencies]
apache-airflow = "^2.7.3"
apache-airflow-providers-docker = "^3.8.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
# ignore until dbt-utils fixes pytest conf must be in root
[tool.pytest.ini_options]
addopts = "--ignore=dbt_jardiner/dbt_packages"
[tool.deptry]
exclude = [
'tests',
'docs',
]
[[tool.poetry_bumpversion.replacements]]
files = ["jardiner/__init__.py"]
replace = '__version__ = "{new_version}"'
search = '__version__ = "{current_version}"'