From 1cdfbc6dc5c4da6278f6814896b959038538f2fd Mon Sep 17 00:00:00 2001 From: Jason Secula Date: Wed, 18 Mar 2026 20:48:32 +0100 Subject: [PATCH] Updated build number and added dependencies to package --- build/pyproject.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build/pyproject.toml b/build/pyproject.toml index ee745fa..4a37621 100644 --- a/build/pyproject.toml +++ b/build/pyproject.toml @@ -1,15 +1,20 @@ [build-system] requires = [ "setuptools >= 77.0.3", - "requests >= 2.32.5" + "requests >= 2.32.5", + "cryptography" ] build-backend = "setuptools.build_meta" [project] name = "AirwatchAPI" -version = "1.0.2" +version = "1.0.3" description = "A module python to make it easier to use Workspace One API" readme = "README.md" +dependencies = [ + "requests >= 2.32.5", + "cryptography" +] requires-python = ">=3.7" classifiers = [ "Programming Language :: Python :: 3"