Skip to content

Commit

Permalink
Update names, url, and copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Aug 24, 2022
1 parent 307a99b commit ecc5677
Show file tree
Hide file tree
Showing 23 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ See the `user guide <https://thx.omnilib.dev>`_ for help getting started.
License
-------

`thx` is copyright `John Reese <https://jreese.sh>`_, and licensed under
`thx` is copyright `Amethyst Reese <https://noswap.com>`_, 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.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion thx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
Fast command runner for Python projects.
"""

__author__ = "John Reese"
__author__ = "Amethyst Reese"
from .__version__ import __version__
2 changes: 1 addition & 1 deletion thx/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

from .main import main
Expand Down
2 changes: 1 addition & 1 deletion thx/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import logging
Expand Down
2 changes: 1 addition & 1 deletion thx/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion thx/context.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import logging
Expand Down
2 changes: 1 addition & 1 deletion thx/core.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import asyncio
Expand Down
2 changes: 1 addition & 1 deletion thx/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import asyncio
Expand Down
2 changes: 1 addition & 1 deletion thx/runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import asyncio
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

from .cli import CliTest
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import asyncio
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import os
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/context.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import platform
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/helper.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import asyncio
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import sys
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2022 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion thx/tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import asyncio
Expand Down
2 changes: 1 addition & 1 deletion thx/types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

from dataclasses import dataclass, field
Expand Down
2 changes: 1 addition & 1 deletion thx/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 John Reese
# Copyright 2022 Amethyst Reese
# Licensed under the MIT License

import logging
Expand Down

0 comments on commit ecc5677

Please sign in to comment.