From 544b35fba5f33c90de1d9612bf776de115c64e5a Mon Sep 17 00:00:00 2001 From: Jorge Maldonado Ventura Date: Wed, 11 Apr 2018 19:08:33 +0200 Subject: [PATCH] Update setup.py - Add license metadata - Add `Programming Language :: Python :: 3.7` classifier - Use HTTPS in the website link --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c8ab9e30..06da7628 100755 --- a/setup.py +++ b/setup.py @@ -29,12 +29,13 @@ if sys.version_info.major < 3: setup( name='pelican', version='3.7.2.dev0', - url='http://getpelican.com/', + url='https://getpelican.com/', author='Alexis Metaireau', maintainer='Justin Mayer', author_email='authors@getpelican.com', description="Static site generator supporting reStructuredText and " "Markdown source content.", + license='AGPLv3', long_description=description, packages=['pelican', 'pelican.tools'], package_data={ @@ -64,6 +65,7 @@ setup( 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules',