Skip to content

Commit 421aaaf

Browse files
Meta: Use my name in the license and project metadata. (#38)
Changes from `ZeroIntensity` to my actual name in the license and the `pyproject.toml`. Also adds an `__author__` variable to the package.
1 parent d892e1e commit 421aaaf

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 ZeroIntensity
3+
Copyright (c) 2024 Peter Bierma
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "pyawaitable"
77
description = "Call asynchronous code from an extension module."
88
authors = [
9-
{ name = "ZeroIntensity", email = "[email protected]" },
9+
{ name = "Peter Bierma", email = "[email protected]" },
1010
]
1111
readme = "README.md"
1212
license = { file = "LICENSE" }

src/pyawaitable/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
__all__ = "PyAwaitable", "include", "abi"
1515
__version__ = "1.3.0"
16+
__author__ = "Peter Bierma"
1617

1718
PyAwaitable: Type = _PyAwaitableType
1819

0 commit comments

Comments
 (0)