From d8fc78fc9d70e2d46ad944423033d044bd7e7e52 Mon Sep 17 00:00:00 2001 From: MarcUs7i <96580944+MarcUs7i@users.noreply.github.com> Date: Sat, 24 May 2025 01:23:10 +0200 Subject: [PATCH] Added pyproject.toml --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..873c810 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "lidlconnect" +version = "0.1.0" +description = "Python API client for Lidl Connect" +readme = "README.md" +license = { file = "LICENSE" } +authors = [ + { name = "MarcUs7i", email = "info@marcus7i.net" } +] +dependencies = [ + "bs4", + "requests" +] + +[project.urls] +Homepage = "https://github.com/MarcUs7i/LidlConnect"