Initial commit

This commit is contained in:
2025-07-04 19:58:11 +02:00
commit 7d9352968d
101 changed files with 12643 additions and 0 deletions

21
pyproject.toml Normal file
View File

@ -0,0 +1,21 @@
[tool.poetry]
name = "datascience"
version = "0.1.0"
description = ""
authors = ["Steve Kossouho <skossouho@dawan.fr>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<=3.12"
matplotlib = "^3.6.3"
pandas = "^1.5.2"
requests = "^2.28.2"
bokeh = "^3.1.0"
jupyter = "^1.0.0"
xlsxwriter = "^3.1.1"
plotly = "^5.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"