From 230095e19932b58be0a7643d9ed7db0ba05d8b3b Mon Sep 17 00:00:00 2001 From: NinjaCheetah <58050615+NinjaCheetah@users.noreply.github.com> Date: Wed, 6 Mar 2024 08:57:23 -0500 Subject: [PATCH] Added dependencies to pyproject.toml --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e09d5a3..090c31a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ authors = [ { name="NinjaCheetah", email="ninjacheetah@ncxprogramming.com" }, { name="Lillian Skinner", email="lillian@randommeaninglesscharacters.com" } ] -description = "A Wii-related library for Python" +description = "A modern Python library for handling files used by the Wii" readme = "README.md" requires-python = ">=3.10" classifiers = [ @@ -13,6 +13,9 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] +dependencies = [ + "pycryptodome", +] [project.urls] Homepage = "https://github.com/NinjaCheetah/libWiiPy"