diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 8bf0b1b..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2025 Marty Oehme - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/pyproject.toml b/pyproject.toml index e5de0c0..80c24eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "topen" version = "0.1.0" -description = "Quickly edit notes for your taskwarrior tasks" +description = "Add your description here" readme = "README.md" requires-python = ">=3.13" dependencies = [ diff --git a/topen.py b/topen.py index 870746d..9cb6091 100755 --- a/topen.py +++ b/topen.py @@ -28,16 +28,7 @@ TOPEN_QUIET = os.getenv("TOPEN_QUIET", False) def parse_cli() -> argparse.Namespace: - parser = argparse.ArgumentParser( - formatter_class=argparse.RawDescriptionHelpFormatter, - description="Taskwarrior note editing made easy.", - epilog="""Provide a taskwarrior task id or uuid and topen creates a -new note file for or lets you edit an existing one. -Additionally it adds a small annotation to the task -to let you see that there exists a note file next time -you view the task. -""", - ) + parser = argparse.ArgumentParser(description="Taskwarrior note editing made easy.") _ = parser.add_argument( "id", help="The id/uuid of the taskwarrior task for which we edit notes" )