From ecc5677d7d386b8b56552fcd57591b79b7fcbc71 Mon Sep 17 00:00:00 2001 From: Amethyst Reese Date: Tue, 23 Aug 2022 22:19:16 -0700 Subject: [PATCH] Update names, url, and copyright --- LICENSE | 2 +- README.rst | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 4 ++-- thx/__init__.py | 2 +- thx/__main__.py | 2 +- thx/cli.py | 2 +- thx/config.py | 2 +- thx/context.py | 2 +- thx/core.py | 2 +- thx/main.py | 2 +- thx/runner.py | 2 +- thx/tests/__init__.py | 2 +- thx/tests/__main__.py | 2 +- thx/tests/cli.py | 2 +- thx/tests/config.py | 2 +- thx/tests/context.py | 2 +- thx/tests/helper.py | 2 +- thx/tests/runner.py | 2 +- thx/tests/types.py | 2 +- thx/tests/utils.py | 2 +- thx/types.py | 2 +- thx/utils.py | 2 +- 23 files changed, 25 insertions(+), 25 deletions(-) diff --git a/LICENSE b/LICENSE index 4720067..bbb5ba0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 John Reese +Copyright (c) 2022 Amethyst Reese Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.rst b/README.rst index 0a7965a..b14e6fb 100644 --- a/README.rst +++ b/README.rst @@ -125,7 +125,7 @@ See the `user guide `_ for help getting started. License ------- -`thx` is copyright `John Reese `_, and licensed under +`thx` is copyright `Amethyst Reese `_, and licensed under the MIT license. I am providing code in this repository to you under an open source license. This is my personal repository; the license you receive to my code is from me and not from my employer. See the `LICENSE`_ file for details. diff --git a/docs/conf.py b/docs/conf.py index b386253..724ab93 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,8 +20,8 @@ import datetime project = "thx" -copyright = f"{datetime.date.today().year}, John Reese" -author = "John Reese" +copyright = f"{datetime.date.today().year}, Amethyst Reese" +author = "Amethyst Reese" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 7c27c89..153881a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,8 @@ build-backend = "flit_core.buildapi" [tool.flit.metadata] module = "thx" -author = "John Reese" -author-email = "john@noswap.com" +author = "Amethyst Reese" +author-email = "amy@noswap.com" description-file = "README.rst" home-page = "https://github.com/omnilib/thx" requires = [ diff --git a/thx/__init__.py b/thx/__init__.py index f80f17d..0e7c05a 100644 --- a/thx/__init__.py +++ b/thx/__init__.py @@ -2,5 +2,5 @@ Fast command runner for Python projects. """ -__author__ = "John Reese" +__author__ = "Amethyst Reese" from .__version__ import __version__ diff --git a/thx/__main__.py b/thx/__main__.py index 4732797..719521b 100644 --- a/thx/__main__.py +++ b/thx/__main__.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License from .main import main diff --git a/thx/cli.py b/thx/cli.py index c543a21..73b117f 100644 --- a/thx/cli.py +++ b/thx/cli.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import logging diff --git a/thx/config.py b/thx/config.py index 2745701..d234bc3 100644 --- a/thx/config.py +++ b/thx/config.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License from pathlib import Path diff --git a/thx/context.py b/thx/context.py index 5109953..4a62401 100644 --- a/thx/context.py +++ b/thx/context.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import logging diff --git a/thx/core.py b/thx/core.py index a9c4355..a391118 100644 --- a/thx/core.py +++ b/thx/core.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import asyncio diff --git a/thx/main.py b/thx/main.py index e41373d..79c1489 100644 --- a/thx/main.py +++ b/thx/main.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import asyncio diff --git a/thx/runner.py b/thx/runner.py index 03679d1..c60326b 100644 --- a/thx/runner.py +++ b/thx/runner.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import asyncio diff --git a/thx/tests/__init__.py b/thx/tests/__init__.py index e9c080e..31f8d25 100644 --- a/thx/tests/__init__.py +++ b/thx/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License from .cli import CliTest diff --git a/thx/tests/__main__.py b/thx/tests/__main__.py index 23fc30d..989b181 100644 --- a/thx/tests/__main__.py +++ b/thx/tests/__main__.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import asyncio diff --git a/thx/tests/cli.py b/thx/tests/cli.py index bb08c1f..909b4b2 100644 --- a/thx/tests/cli.py +++ b/thx/tests/cli.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License from pathlib import Path diff --git a/thx/tests/config.py b/thx/tests/config.py index 926c63c..7df3561 100644 --- a/thx/tests/config.py +++ b/thx/tests/config.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import os diff --git a/thx/tests/context.py b/thx/tests/context.py index 28cab9c..afae9f0 100644 --- a/thx/tests/context.py +++ b/thx/tests/context.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import platform diff --git a/thx/tests/helper.py b/thx/tests/helper.py index 0d860b5..c47f77d 100644 --- a/thx/tests/helper.py +++ b/thx/tests/helper.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import asyncio diff --git a/thx/tests/runner.py b/thx/tests/runner.py index 980fe48..7b6e175 100644 --- a/thx/tests/runner.py +++ b/thx/tests/runner.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import sys diff --git a/thx/tests/types.py b/thx/tests/types.py index b75d909..61c0f17 100644 --- a/thx/tests/types.py +++ b/thx/tests/types.py @@ -1,4 +1,4 @@ -# Copyright 2022 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License from pathlib import Path diff --git a/thx/tests/utils.py b/thx/tests/utils.py index fee5f90..321c93c 100644 --- a/thx/tests/utils.py +++ b/thx/tests/utils.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import asyncio diff --git a/thx/types.py b/thx/types.py index 4e12d5b..497b94a 100644 --- a/thx/types.py +++ b/thx/types.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License from dataclasses import dataclass, field diff --git a/thx/utils.py b/thx/utils.py index 506194d..936afc6 100644 --- a/thx/utils.py +++ b/thx/utils.py @@ -1,4 +1,4 @@ -# Copyright 2021 John Reese +# Copyright 2022 Amethyst Reese # Licensed under the MIT License import logging