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