From 97d971b8266bc0cd0e8d3fb2a0b022f13f7b728a Mon Sep 17 00:00:00 2001 From: geekiot Date: Thu, 16 Oct 2025 00:07:30 +0500 Subject: [PATCH] Fix: fix template's configs --- flake.nix | 2 +- pyproject.toml | 4 ++-- src/main.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 832e100..a8bcb59 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Add your description here"; + description = "Flake for developing urfu-daddy"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; diff --git a/pyproject.toml b/pyproject.toml index b2b96b8..dfec7c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] -name = "python-template" +name = "urfu-daddy" version = "0.1.0" -description = "Add your description here" +description = "The perfect assistant for collaborative work of IRIT-RTF students" readme = "README.md" requires-python = ">=3.13,<3.14" dependencies = [ diff --git a/src/main.py b/src/main.py index 3979400..cb453c0 100644 --- a/src/main.py +++ b/src/main.py @@ -1,5 +1,5 @@ def main(): - print("Hello from python-template!") + print("Hello from urfu-daddy!") if __name__ == "__main__":