-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (42 loc) · 982 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
[tool.ruff]
select = [
"E", # pycodestyle
"F", # Pyflakes
"W", # pycodestyle
"I", # isort
"N", # pep8-naming
"ANN", # function annotations
"B", # bugbear
"A", # built-ins
"DTZ", # flake8-datetimez
]
target-version = "py39"
fix = true
show-fixes = true
[tool.ruff.isort]
known-third-party = ["great_expectations"]
[tool.ruff.flake8-annotations]
suppress-none-returning = true
[tool.poetry]
name = "covid-19-data-engineering-pipeline"
version = "v21"
description = "A Covid-19 data pipeline on AWS"
authors = ["Moritz Körber"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.9"
requests = "^2.28.2"
boto3 = "*"
pandas = "~1.4.4"
pyspark = "~3.3.1"
pyarrow = "~8.0.0"
apache-airflow = "2.6.3"
awswrangler = "~2.17.0"
great-expectations = "^0.14.13"
s3fs = "~2022.11.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"