-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (40 loc) · 1019 Bytes
/
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
[tool.poetry]
name = "pipelines"
version = "0.1.0"
description = ""
authors = ["Gabriel Gazola Milan <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
dbt-bigquery = "^1.6.1"
google-cloud-storage = "^2.10.0"
prefect = "1.4.1"
prefeitura-rio = {git = "https://github.com/prefeitura-rio/prefeitura-rio", rev = "20bfa9cfc42b836fee63094cd07efe6b11a519e5", extras = [
"pipelines",
"pipelines-templates",
"actions",
]}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
pre-commit = "^3.3.3"
taskipy = "^1.12.0"
isort = "^5.12.0"
[tool.poetry.group.ci]
optional = true
[tool.poetry.group.ci.dependencies]
networkx = "^3.1"
loguru = "^0.7.0"
typer = "^0.9.0"
[tool.black]
line-length = 100
target-version = ["py310"]
include = "\\.pyi?$"
[tool.isort]
profile = "black"
[tool.taskipy.tasks]
lint = "black . && isort . && flake8 ."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"