-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 923 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
32
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "hotels"
version = "0.1"
description = "Streamlit Dashboard for Hotels data set"
authors = ["Hironori Sakai <stdiff@outlook.de>"]
license = "MIT License"
[tool.poetry.dependencies]
python = ">=3.9.8,<3.10"
streamlit = "1.31.0"
pandas = "2.1.1"
numpy = "1.26.1"
altair = "5.1.2"
dvc = "3.48.3"
dvc-s3 = "3.1.0"
boto3 = "1.34.51"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
jupyterlab = "3.6.3"
jupyterlab-code-formatter = "1.5.3"
digautoprofiler = "^1.0.1"
joblib = "^1.2.0"
pytest = "^7.4.3"
pandera = "^0.18.0"
tqdm = "^4.66.1"
ipywidgets = "^8.1.1"
[tool.poetry.scripts]
retrieve_data = "pipelines.retrieve_data:main"
clean_data = "pipelines.clean_data:main"
action_data = "pipelines.aggregate_data:build_action_data"
[tool.black]
line-length = 120
target-version = ["py39"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"