From 47b622259936aab87a78d78b503167ba90151673 Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Wed, 20 Oct 2021 11:35:52 -0500 Subject: [PATCH] Update author information and add maintainer one Also add Python 3.10 classifier --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 71309eab..c0ab7d5b 100644 --- a/setup.py +++ b/setup.py @@ -28,8 +28,10 @@ description='FontAwesome icons in PyQt and PySide applications', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', - author='Sylvain Corlay', - author_email='sylvain.corlay@gmail.com', + author='Sylvain Corlay and the Spyder Development Team', + author_email='spyder.python@gmail.com', + maintainer='Spyder Development Team and QtAwesome Contributors', + maintainer_email='spyder.python@gmail.com', license='MIT', url='https://github.com/spyder-ide/qtawesome', keywords=['PyQt', 'PySide', 'Icons', 'Font Awesome', 'Fonts'], @@ -48,6 +50,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], cmdclass={ 'update_fa5': setupbase.UpdateFA5Command,