ames-housing/pyproject.toml

49 lines
973 B
TOML
Raw Normal View History

2020-06-29 01:08:07 +02:00
[build-system]
requires = ["poetry-core"]
2021-05-25 07:46:42 +02:00
build-backend = "poetry.core.masonry.api"
2018-09-02 23:25:41 +02:00
2020-06-29 01:08:07 +02:00
[tool.poetry]
2021-05-25 07:46:42 +02:00
name = "ames-housing"
2024-07-08 14:10:35 +02:00
version = "0.2.0.dev0"
2021-05-25 07:46:42 +02:00
authors = [
"Alexander Hess <alexander@webartifex.biz>",
]
2020-06-29 01:08:07 +02:00
description = "A case study on predicting house prices in Ames, Iowa"
keywords = [
"data-science",
"data-cleaning",
"house-price-prediction",
"machine-learning",
"prediction",
"predictive-analytics",
]
license = "MIT"
2021-05-25 07:46:42 +02:00
2020-06-29 01:08:07 +02:00
readme = "README.md"
2021-05-25 07:46:42 +02:00
homepage = "https://github.com/webartifex/ames-housing"
2020-06-29 01:08:07 +02:00
repository = "https://github.com/webartifex/ames-housing"
package-mode = false
2020-06-29 01:08:07 +02:00
[tool.poetry.dependencies]
2021-05-25 07:46:42 +02:00
python = "^3.8"
2021-05-25 07:58:10 +02:00
jupyterlab = "^3.0.16"
2021-05-25 08:03:35 +02:00
missingno = "^0.4.2"
2021-05-25 08:12:28 +02:00
matplotlib = "^3.4.2"
2021-05-25 08:01:55 +02:00
numpy = "^1.20.3"
2021-05-25 08:02:32 +02:00
pandas = "^1.2.4"
2021-05-25 08:05:52 +02:00
requests = "^2.25.1"
2021-05-25 08:11:42 +02:00
scikit-learn = "^0.24.2"
2021-05-25 08:13:06 +02:00
seaborn = "^0.11.1"
2021-05-25 08:19:55 +02:00
statsmodels = "^0.12.2"
2021-05-25 08:06:34 +02:00
tabulate = "^0.8.9"
2021-05-25 08:23:34 +02:00
tqdm = "^4.61.0"
2021-05-25 08:07:34 +02:00
xlrd = "^2.0.1"
2020-06-29 01:08:07 +02:00
[tool.poetry.group.dev.dependencies]
2021-05-25 07:59:15 +02:00
black = "^21.5b1"
2021-05-25 08:00:15 +02:00
pylint = "^2.8.2"