-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (67 loc) · 1.78 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
[tool.poetry]
name = "pipelines"
version = "0.1.0"
description = ""
authors = ["Gabriel Gazola Milan <gabriel.gazola@poli.ufrj.br>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
dbt-bigquery = "^1.6.1"
google-cloud-storage = "^2.10.0"
prefect = "1.4.1"
python-telegram-bot = "^21.4"
redis-pal = "^1.0.0"
bs4 = "^0.0.2"
h5py = "^3.11.0"
unidecode = "^1.3.8"
pandas-read-xml = "^0.3.1"
netcdf4 = "^1.7.1.post2"
fiona = "^1.9.6"
s3fs = "^2024.6.1"
xarray = "^2024.7.0"
matplotlib = "^3.9.2"
cartopy = "^0.23.0"
prefeitura-rio = { git = "https://github.com/prefeitura-rio/prefeitura-rio.git", rev = "2f6a5b9cfae4e214e694346a87c3ffbbe0954a70", branch = "feat/reimplement-templates", extras = [
"pipelines",
"pipelines-templates",
] }
openpyxl = "^3.1.5"
arm-pyart = "^1.19.1"
lxml = "^5.3.0"
numpy = "<2"
contextily = "^1.6.2"
dbt-client = "^0.1.3"
elasticsearch = "^8.15.1"
gdal = { url = "https://prefeitura-rio.github.io/storage/GDAL-3.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl" }
[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 ."
[[package]]
name = "basedosdados"
version = "2.0.0-beta.21"
description = "Organizar e facilitar o acesso a dados brasileiros através de tabelas públicas no BigQuery."
optional = false
python-versions = ">=3.8.1,<4"
files = []
develop = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"