@@ -81,6 +81,7 @@ def read_file(filename):
8181 description = 'Modern python library for emails.' ,
8282 long_description = read_file ('README.rst' ),
8383 long_description_content_type = 'text/x-rst' ,
84+ license = 'Apache License 2.0' ,
8485 author = 'Sergey Lavrinenko' ,
8586 author_email = 's@lavr.me' ,
8687 url = 'https://github.com/lavr/python-emails' ,
@@ -103,9 +104,10 @@ def read_file(filename):
103104 'async' : ['aiosmtplib' ],
104105 },
105106 zip_safe = False ,
106- classifiers = (
107+ classifiers = [
107108 'Development Status :: 5 - Production/Stable' ,
108109 'Intended Audience :: Developers' ,
110+ 'License :: OSI Approved :: Apache Software License' ,
109111 'Natural Language :: English' ,
110112 "Operating System :: OS Independent" ,
111113 "Programming Language :: Python" ,
@@ -119,7 +121,7 @@ def read_file(filename):
119121 "Topic :: Internet :: WWW/HTTP" ,
120122 "Topic :: Other/Nonlisted Topic" ,
121123 "Topic :: Software Development :: Libraries :: Python Modules" ,
122- ) ,
124+ ] ,
123125 cmdclass = {'audit' : run_audit }
124126)
125127
0 commit comments