intro-to-data-science/pyproject.toml

44 lines
851 B
TOML
Raw Normal View History

2020-09-16 23:31:34 +02:00
[build-system]
requires = ["poetry-core"]
2021-05-23 18:18:51 +02:00
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"
2024-07-15 09:10:17 +02:00
version = "0.3.0.dev0"
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"
package-mode = false
[tool.poetry.dependencies]
2024-07-15 09:29:49 +02:00
python = "^3.9"
2024-07-15 09:29:49 +02:00
jupyterlab = "^4.2"
matplotlib = "^3.9"
numpy = "^2.0"
pandas = "^2.2"
scikit-learn = "^1.5"
[tool.poetry.group.dev.dependencies]
2024-07-15 09:43:06 +02:00
black = {extras = ["jupyter"], version = "^24.4"}
2024-07-15 09:48:20 +02:00
invoke = "^2.2"