diff --git a/LICENSE b/LICENSE index ea28f88..4a5d4a1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 ZeroIntensity +Copyright (c) 2024 Peter Bierma 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/pyproject.toml b/pyproject.toml index 85ff1a2..8b17f0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "pyawaitable" description = "Call asynchronous code from an extension module." authors = [ - { name = "ZeroIntensity", email = "zintensitydev@gmail.com" }, + { name = "Peter Bierma", email = "zintensitydev@gmail.com" }, ] readme = "README.md" license = { file = "LICENSE" } diff --git a/src/pyawaitable/__init__.py b/src/pyawaitable/__init__.py index ca3dfa4..f1541f8 100644 --- a/src/pyawaitable/__init__.py +++ b/src/pyawaitable/__init__.py @@ -13,6 +13,7 @@ __all__ = "PyAwaitable", "include", "abi" __version__ = "1.3.0" +__author__ = "Peter Bierma" PyAwaitable: Type = _PyAwaitableType