changeset 1398:556df721aa69

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
author Goffi <goffi@goffi.org>
date Sat, 20 Mar 2021 18:22:10 +0100
parents ed037818d6de
children 28aded9b8460
files setup.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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,