Replace pipenv with poetry

Also make the images in the notebook a bit smaller
This commit is contained in:
Alexander Hess 2019-10-02 09:06:44 +02:00
commit b480ded9de
6 changed files with 839 additions and 652 deletions

20
pyproject.toml Normal file
View file

@ -0,0 +1,20 @@
[tool.poetry]
name = "cscm-workshop-intro-machine-learning"
version = "0.1.0"
description = "An introductory workshop on machine learning for WHU's Campus for Supply Chain Management"
authors = ["Alexander Hess <alexander@webartifex.biz>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
jupyter = "^1.0"
numpy = "^1.17"
matplotlib = "^3.1"
pandas = "^0.25"
scikit-learn = "^0.21"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"