Minor changes for PyPI publish

This commit is contained in:
Nocturn9x 2022-04-29 10:52:52 +02:00
parent bcdb32d8e5
commit 3f6d3c539f
1 changed files with 4 additions and 4 deletions

View File

@ -17,8 +17,8 @@ if __name__ == "__main__":
name="asyncevents", name="asyncevents",
version="0.1", version="0.1",
author="Nocturn9x", author="Nocturn9x",
author_email="hackhab@gmail.com", author_email="nocturn9x@nocturn9x.space",
description="Asynchronous event handling in modern Python", description="Asynchronous event handling for modern Python",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/nocturn9x/asyncevents", url="https://github.com/nocturn9x/asyncevents",
@ -26,7 +26,7 @@ if __name__ == "__main__":
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"License :: OSI Approved :: Apache License 2.0", "License :: OSI Approved :: Apache Software License",
], ],
python_requires=">=3.8", python_requires=">=3.6",
) )