intro-to-data-science/pyproject.toml

38 lines
758 B
TOML
Raw Normal View History

2020-09-16 23:31:34 +02:00
[build-system]
2021-05-23 18:18:51 +02:00
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2020-09-16 23:31:34 +02:00
[tool.poetry]
2021-05-23 18:18:51 +02:00
name = "intro-to-data-science"
version = "0.1.0"
2020-09-16 23:31:34 +02:00
2021-05-23 18:18:51 +02:00
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"
2021-05-24 15:16:29 +02:00
readme = "README.md"
homepage = "https://github.com/webartifex/intro-to-data-science"
repository = "https://github.com/webartifex/intro-to-data-science"
[tool.poetry.dependencies]
2021-05-23 18:18:51 +02:00
python = "^3.8"
jupyterlab = "^3.1"
matplotlib = "^3.4"
numpy = "^1.21"
pandas = "^1.3"
scikit-learn = "^1.0"
2021-05-23 18:18:51 +02:00
[tool.poetry.dev-dependencies]