2020-09-16 23:31:34 +02:00
|
|
|
[build-system]
|
2024-07-15 09:20:11 +02:00
|
|
|
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
|
|
|
|
2024-07-15 09:20:11 +02:00
|
|
|
|
2019-10-02 09:06:44 +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",
|
|
|
|
]
|
2019-10-02 09:06:44 +02:00
|
|
|
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"
|
|
|
|
|
2024-07-15 09:20:11 +02:00
|
|
|
package-mode = false
|
|
|
|
|
|
|
|
|
2019-10-02 09:06:44 +02:00
|
|
|
[tool.poetry.dependencies]
|
2024-07-15 09:29:49 +02:00
|
|
|
python = "^3.9"
|
2021-10-03 10:26:55 +02:00
|
|
|
|
2024-07-15 09:29:49 +02:00
|
|
|
jupyterlab = "^4.2"
|
|
|
|
matplotlib = "^3.9"
|
|
|
|
numpy = "^2.0"
|
|
|
|
pandas = "^2.2"
|
|
|
|
scikit-learn = "^1.5"
|
2019-10-02 09:06:44 +02:00
|
|
|
|
2024-07-15 09:20:11 +02:00
|
|
|
[tool.poetry.group.dev.dependencies]
|