feat(flake): use sentence case on descriptions

This commit is contained in:
Artur Manuel 2025-03-04 14:05:58 +00:00
commit a306e192a4
Signed by: amadaluzia
SSH key fingerprint: SHA256:Zwg7gBuZyaG48ucAZneJwltiXu0+tJb7c3lYt9AYlLg
3 changed files with 17 additions and 6 deletions

View file

@ -3,8 +3,8 @@
}: let
ps = python3Packages;
in ps.buildPythonApplication {
pname = "sm64pcport-for-dummies";
version = "2025.03";
pname = "REPLACE_ME";
version = "REPLACE_VER";
src = builtins.filterSource (path: _: baseNameOf path != ".git") ../.;

View file

@ -1,7 +1,7 @@
[project]
name = "REPLACE_ME"
description = "Dumbed-down frontend for the SM64 PC Port compiler."
version = "2025.03"
description = "REPLACE DESC"
version = "REPLACE_VER"
[project.scripts]
REPLACE_ME = "REPLACE_ME.__main__:main"