From b55d0f4aa5867d217351fc4074a800e0c86a7cf1 Mon Sep 17 00:00:00 2001 From: Kian McKenna <59800761+cowboycodr@users.noreply.github.com> Date: Mon, 21 Feb 2022 20:21:25 -0600 Subject: [PATCH] Update Choam.toml | enhanced configurations Enhanced the existing configurations to use Choam's newer features including a Choam script which automatically formats the project files using PSF's black. --- Choam.toml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Choam.toml b/Choam.toml index fcb69a1..3ca8161 100644 --- a/Choam.toml +++ b/Choam.toml @@ -1,9 +1,9 @@ [package] name = "pyserved" version = "2.0.5" -description = "" -repo = "*required*" -keywords = [] +description = "Client for sending files <= 100mb using sockets and Pythonn." +repo = "https://github.com/SlibDev/pyserved" +keywords = ["sockets"] [modules-ignore] @@ -11,3 +11,12 @@ keywords = [] rich = "*" socket = "*" readline = "*" + +[modules-dev] + +# Format project files +# $ choam run format +[script.format] +requires = ["black"] +perspective = "${PROJECT}" +command = "${PYTHON} -m black ."