-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (25 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
32 lines (25 loc) · 822 Bytes
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
[tool.poetry]
name = "simple-airports-analysis"
version = "0.3.0"
description = "A Python project for simple analysis of airport data in Malaysia, including ETL pipelines, a database, and a Metabase dashboard. The project utilizes Luigi for workflow orchestration and dbt for data transformation."
authors = ["1bk <l.boon.keong@gmail.com>"]
readme = "README.md"
packages = [{include = "workflow"}]
[tool.poetry.dependencies]
python = "^3.7.1"
sqlalchemy = "1.3.10"
requests = "2.26.0"
typing = "3.7.4.1"
luigi = "2.8.11"
pyyaml = "5.4"
pandas = "1.3.5"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pipdeptree = "^2.7.0"
[tool.poetry.group.dev.dependencies]
tox = "3.28.0"
pytest = "^7.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"