intro-to-data-science/pyproject.toml
Alexander Hess b480ded9de Replace pipenv with poetry
Also make the images in the notebook a bit smaller
2019-10-02 09:06:44 +02:00

20 lines
506 B
TOML

[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"