Spaces:
Build error
Build error
File size: 752 Bytes
8a365bb 232e5e5 8a365bb 6dedf80 8a365bb 232e5e5 14d2a2e 232e5e5 |
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 |
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "cookbook-data-viz-plotly"
version = "0.0.1"
description = "Credit risk model builder demonstration"
authors = ["pkiage paul.r.kiage@gmail.com"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
pandas = "^1.4.0"
numpy = "^1.22.1"
matplotlib = "^3.5.1"
seaborn = "^0.11.2"
notebook = "^6.4.7"
scikit-learn = "^1.0.2"
xgboost = "^1.5.2"
streamlit = "^1.4.0"
plotly = "^5.5.0"
graphviz = "^0.19.1"
pillow = ">=9.0.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.12b0"
flake8 = "^4.0.1"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|