From 989981b746096adb21fecbf794ca81967260d525 Mon Sep 17 00:00:00 2001 From: Nocturn9x Date: Tue, 18 Oct 2022 15:59:53 +0200 Subject: [PATCH] Changes to motto (lol) --- README.md | 4 +++- aiosched/__init__.py | 2 +- aiosched/errors.py | 2 +- aiosched/internals/__init__.py | 2 +- aiosched/internals/queues.py | 2 +- aiosched/internals/syscalls.py | 2 +- aiosched/kernel.py | 2 +- aiosched/runtime.py | 2 +- aiosched/task.py | 2 +- setup.py | 2 +- 10 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4640904..c05af4b 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# TODO +# aiosched: Yet another Python async scheduler + +TODO \ No newline at end of file diff --git a/aiosched/__init__.py b/aiosched/__init__.py index f151b51..f8bbda2 100644 --- a/aiosched/__init__.py +++ b/aiosched/__init__.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/aiosched/errors.py b/aiosched/errors.py index b0b7307..d04412e 100644 --- a/aiosched/errors.py +++ b/aiosched/errors.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/aiosched/internals/__init__.py b/aiosched/internals/__init__.py index 9571994..bd705b6 100644 --- a/aiosched/internals/__init__.py +++ b/aiosched/internals/__init__.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/aiosched/internals/queues.py b/aiosched/internals/queues.py index 597e18a..158d25e 100644 --- a/aiosched/internals/queues.py +++ b/aiosched/internals/queues.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/aiosched/internals/syscalls.py b/aiosched/internals/syscalls.py index 10748b4..05d45a0 100644 --- a/aiosched/internals/syscalls.py +++ b/aiosched/internals/syscalls.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/aiosched/kernel.py b/aiosched/kernel.py index 1c8e30c..484b061 100644 --- a/aiosched/kernel.py +++ b/aiosched/kernel.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/aiosched/runtime.py b/aiosched/runtime.py index 67764fe..3779b52 100644 --- a/aiosched/runtime.py +++ b/aiosched/runtime.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/aiosched/task.py b/aiosched/task.py index 4394dc9..219acf6 100644 --- a/aiosched/task.py +++ b/aiosched/task.py @@ -1,5 +1,5 @@ """ -aiosched: I'm bored and I'm making an async event loop again +aiosched: Yet another Python async scheduler Copyright (C) 2020 nocturn9x diff --git a/setup.py b/setup.py index a2b1c00..c29ea56 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ if __name__ == "__main__": version="0.1.0", author="Nocturn9x", author_email="hackhab@gmail.com", - description="An asynchronous scheduler", + description="Yet another Python async scheduler", long_description=long_description, long_description_content_type="text/markdown", url="https://git.nocturn9x.space/nocturn9x/aiosched",