From fca796173f6eaf58e198c3242f201977cdab8eb6 Mon Sep 17 00:00:00 2001 From: Lenoctambule <106790775+lenoctambule@users.noreply.github.com> Date: Tue, 9 Jun 2026 15:45:44 +0200 Subject: [PATCH] fix: missing dependencies in pyproject.toml --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 872b0a2..3d67b07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "easyvae" -version = "1.3" +version = "1.3.3" authors = [ { name="Ravaka RALAMBOARIVONY", email="ravaka.rlb.pro@gmail.com" }, ] @@ -13,6 +13,11 @@ classifiers = [ ] license = "MIT" license-files = ["LICEN[CS]E*"] +dependencies = [ + "numpy", + "matplotlib", + "tqdm", +] [project.urls] Homepage = "https://github.com/lenoctambule/autoencoder"