Set up brand new pyproject.toml file
This commit is contained in:
parent
32c8b55cfa
commit
64c18b8e3a
2 changed files with 15 additions and 1637 deletions
1616
poetry.lock
generated
1616
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,14 +1,15 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
build-backend = "poetry.masonry.api"
|
requires = ["poetry-core>=1.0.0"]
|
||||||
requires = ["poetry>=0.12"]
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.black]
|
|
||||||
line-length = 79
|
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
authors = ["Alexander Hess <alexander@webartifex.biz>"]
|
name = "ames-housing"
|
||||||
|
version = "0.1.0.dev0"
|
||||||
|
|
||||||
|
authors = [
|
||||||
|
"Alexander Hess <alexander@webartifex.biz>",
|
||||||
|
]
|
||||||
description = "A case study on predicting house prices in Ames, Iowa"
|
description = "A case study on predicting house prices in Ames, Iowa"
|
||||||
homepage = "https://github.com/webartifex/ames-housing"
|
|
||||||
keywords = [
|
keywords = [
|
||||||
"data-science",
|
"data-science",
|
||||||
"data-cleaning",
|
"data-cleaning",
|
||||||
|
@ -18,27 +19,12 @@ keywords = [
|
||||||
"predictive-analytics",
|
"predictive-analytics",
|
||||||
]
|
]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "ames-housing"
|
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
homepage = "https://github.com/webartifex/ames-housing"
|
||||||
repository = "https://github.com/webartifex/ames-housing"
|
repository = "https://github.com/webartifex/ames-housing"
|
||||||
version = "0.1.0"
|
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
jupyterlab = "^2.1.5"
|
python = "^3.8"
|
||||||
matplotlib = "^3.2.2"
|
|
||||||
missingno = "^0.4.2"
|
|
||||||
numpy = "^1.19.0"
|
|
||||||
pandas = "^1.0.5"
|
|
||||||
python = "^3.7"
|
|
||||||
requests = "^2.24.0"
|
|
||||||
seaborn = "^0.10.1"
|
|
||||||
sklearn = "^0.0"
|
|
||||||
statsmodels = "^0.11.1"
|
|
||||||
tabulate = "^0.8.7"
|
|
||||||
tqdm = "^4.47.0"
|
|
||||||
xlrd = "^1.2.0"
|
|
||||||
xlwt = "^1.3.0"
|
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
black = "^19.10b0"
|
|
||||||
pylint = "^2.5.3"
|
|
||||||
|
|
Loading…
Reference in a new issue