Migrate to uv package manager

This commit is contained in:
2025-04-24 12:39:46 +02:00
parent 07407fcdd4
commit 32901d1247
3 changed files with 947 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "studies"
version = "0.1.0"
description = "A curated collection of mathematics and data science projects developed during my academic journey."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"matplotlib>=3.10.1",
"numpy>=2.2.5",
"opencv-python>=4.11.0.86",
"pandas>=2.2.3",
"scikit-learn>=1.6.1",
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"uv>=0.6.16",
]