changeset 78:8959519f9066 v0.8.0b1

v0.8.0b1 release
author Goffi <goffi@goffi.org>
date Fri, 18 Jun 2021 14:14:41 +0200
parents 0f2536ae968f
children 52ba2fcda8a5
files setup.py
diffstat 1 files changed, 11 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Wed Apr 14 14:07:02 2021 +0200
+++ b/setup.py	Fri Jun 18 14:14:41 2021 +0200
@@ -1,9 +1,8 @@
 #!/usr/bin/env python3
-# -*- coding: utf-8 -*-
 
 # SàT tmp: repository to store temporary patches for third party software
+# Copyright (C) 2009-2021  Jérôme Poisson (goffi@goffi.org)
 # Copyright (C) 2017  Arnaud Joset (info@agayon.be)
-# Copyright (C) 2009-2017  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
@@ -28,26 +27,29 @@
 
 setup(
     name=NAME,
-    version='0.8.0.dev0',
-    description='Salut à Toi temporary third party patches',
-    long_description=('This module is used by Salut à Toi project to patch third party '
-                      'modules when the patches are not yet available upstream. Patches '
-                      'are removed from this module once merged upstream.'),
+    version='0.8.0b1',
+    description='Libervia temporary third party patches',
+    long_description=(
+        'This module is used by Libervia project (formerly "Salut à Toi") project to '
+        'patch third party modules when the patches are not yet available upstream. '
+        'Patches are removed from this module once merged upstream.'),
     author='Association « Salut à Toi »',
     author_email='contact@salut-a-toi.org',
     url='https://salut-a-toi.org',
     classifiers=[
         "Programming Language :: Python :: 3 :: Only",
         "Programming Language :: Python :: 3.7",
+        "Programming Language :: Python :: 3.8",
+        "Programming Language :: Python :: 3.9",
         "Development Status :: 5 - Production/Stable",
         "License :: OSI Approved :: GNU Affero General Public License v3 "
         "or later (AGPLv3+)",
         "Operating System :: POSIX :: Linux",
         "Topic :: Communications :: Chat",
     ],
-    install_requires=['wokkel >= 0.7.1'],
+    install_requires=['wokkel == 18.0.0'],
     packages=['sat_tmp', 'sat_tmp.wokkel', 'sat_tmp.wokkel.test'],
     data_files=[(os.path.join('share/doc', NAME),
                 ['README', 'COPYING'])],
-    python_requires=">=3.6",
+    python_requires=">=3.7",
 )