comparison setup.py @ 78:8959519f9066 v0.8.0b1

v0.8.0b1 release
author Goffi <goffi@goffi.org>
date Fri, 18 Jun 2021 14:14:41 +0200
parents 4b08108560e3
children 46894097e7ee cde0bacddbbf
comparison
equal deleted inserted replaced
77:0f2536ae968f 78:8959519f9066
1 #!/usr/bin/env python3 1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 2
4 # SàT tmp: repository to store temporary patches for third party software 3 # SàT tmp: repository to store temporary patches for third party software
4 # Copyright (C) 2009-2021 Jérôme Poisson (goffi@goffi.org)
5 # Copyright (C) 2017 Arnaud Joset (info@agayon.be) 5 # Copyright (C) 2017 Arnaud Joset (info@agayon.be)
6 # Copyright (C) 2009-2017 Jérôme Poisson (goffi@goffi.org)
7 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) 6 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org)
8 7
9 # This program is free software: you can redistribute it and/or modify 8 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU Affero General Public License as published by 9 # it under the terms of the GNU Affero General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or 10 # the Free Software Foundation, either version 3 of the License, or
26 NAME = 'sat_tmp' 25 NAME = 'sat_tmp'
27 26
28 27
29 setup( 28 setup(
30 name=NAME, 29 name=NAME,
31 version='0.8.0.dev0', 30 version='0.8.0b1',
32 description='Salut à Toi temporary third party patches', 31 description='Libervia temporary third party patches',
33 long_description=('This module is used by Salut à Toi project to patch third party ' 32 long_description=(
34 'modules when the patches are not yet available upstream. Patches ' 33 'This module is used by Libervia project (formerly "Salut à Toi") project to '
35 'are removed from this module once merged upstream.'), 34 'patch third party modules when the patches are not yet available upstream. '
35 'Patches are removed from this module once merged upstream.'),
36 author='Association « Salut à Toi »', 36 author='Association « Salut à Toi »',
37 author_email='contact@salut-a-toi.org', 37 author_email='contact@salut-a-toi.org',
38 url='https://salut-a-toi.org', 38 url='https://salut-a-toi.org',
39 classifiers=[ 39 classifiers=[
40 "Programming Language :: Python :: 3 :: Only", 40 "Programming Language :: Python :: 3 :: Only",
41 "Programming Language :: Python :: 3.7", 41 "Programming Language :: Python :: 3.7",
42 "Programming Language :: Python :: 3.8",
43 "Programming Language :: Python :: 3.9",
42 "Development Status :: 5 - Production/Stable", 44 "Development Status :: 5 - Production/Stable",
43 "License :: OSI Approved :: GNU Affero General Public License v3 " 45 "License :: OSI Approved :: GNU Affero General Public License v3 "
44 "or later (AGPLv3+)", 46 "or later (AGPLv3+)",
45 "Operating System :: POSIX :: Linux", 47 "Operating System :: POSIX :: Linux",
46 "Topic :: Communications :: Chat", 48 "Topic :: Communications :: Chat",
47 ], 49 ],
48 install_requires=['wokkel >= 0.7.1'], 50 install_requires=['wokkel == 18.0.0'],
49 packages=['sat_tmp', 'sat_tmp.wokkel', 'sat_tmp.wokkel.test'], 51 packages=['sat_tmp', 'sat_tmp.wokkel', 'sat_tmp.wokkel.test'],
50 data_files=[(os.path.join('share/doc', NAME), 52 data_files=[(os.path.join('share/doc', NAME),
51 ['README', 'COPYING'])], 53 ['README', 'COPYING'])],
52 python_requires=">=3.6", 54 python_requires=">=3.7",
53 ) 55 )