forked from Joanna-Khek/hdb_resale_prices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 875 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
[tool.poetry]
name = "hdb-resale-prices"
packages = [
{include = "webapp"}
]
version = "0.1.0"
description = ""
authors = ["Benjamin Dornel <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
pandas = "^2.2.2"
streamlit = {path = "./build/streamlit-1.39.0.tar.gz"}
folium = "^0.17.0"
altair = "^5.4.1"
streamlit-folium = "^0.22.0"
seaborn = "^0.13.2"
tqdm = "^4.66.5"
polars = "^1.7.1"
plotly = "^5.24.1"
python-dateutil = "^2.9.0.post0"
pybadges = {git = "https://github.com/benjamin-awd/pybadges"}
setuptools = "^75.1.0"
streamlit-searchbox = "^0.1.17"
statsmodels = "^0.14.4"
[tool.poetry.group.dev.dependencies]
black = "^24.4.0"
isort = "^5.13.2"
pylint = "^3.1.0"
[tool.poetry.scripts]
extract = "webapp.update.extract:extract"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"