# HG changeset patch # User Goffi # Date 1616260930 -3600 # Node ID 556df721aa69160c2db7d2d88fbbd8ffe3b67c7e # Parent ed037818d6de6f89295279e2e9b109822f15550f install (setup.py): update console script name and setup: - console script name is now "libervia-web" following global project name change - update classifiers to reflect current Python version compatibility diff -r ed037818d6de -r 556df721aa69 setup.py --- a/setup.py Sat Mar 20 18:20:39 2021 +0100 +++ b/setup.py Sat Mar 20 18:22:10 2021 +0100 @@ -1,8 +1,7 @@ #!/usr/bin/env python3 - # Libervia: a Salut à Toi frontend -# Copyright (C) 2011-2018 Jérôme Poisson (goffi@goffi.org) +# Copyright (C) 2011-2021 Jérôme Poisson (goffi@goffi.org) # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) # This program is free software: you can redistribute it and/or modify @@ -67,8 +66,9 @@ url="https://www.salut-a-toi.org", classifiers=[ "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Twisted", @@ -86,7 +86,7 @@ ], entry_points={ "console_scripts": [ - "libervia = libervia.server.launcher:Launcher.run", + "libervia-web = libervia.server.launcher:Launcher.run", ], }, zip_safe=False,