Set up a brand new pyproject.toml file

This commit is contained in:
Alexander Hess 2021-05-23 18:18:51 +02:00
parent 060d7de2c0
commit 3bdc0f76e7
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
2 changed files with 23 additions and 1417 deletions

1409
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,20 +1,27 @@
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "workshop-machine-learning-for-beginners"
version = "0.1.0"
name = "intro-to-data-science"
version = "0.1.0.dev0"
authors = ["Alexander Hess <alexander@webartifex.biz>"]
description = "An introductory workshop on machine learning"
authors = [
"Alexander Hess <alexander@webartifex.biz>",
]
description = "An intro to data science for absolute beginners"
keywords = [
"python",
"data-science",
"machine-learning",
"matplotlib",
"numpy",
"seaborn",
"sklearn",
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
jupyterlab = "^2.2.8"
matplotlib = "^3.3.2"
numpy = "^1.19.2"
pandas = "^1.1.2"
scikit-learn = "^0.23.2"
[tool.poetry.dev-dependencies]