comparison setup.py @ 69:0721b6254c9e

python 3 port: - applied 2to3 - replaced zope's implements by @implementer decorator - replaced references to python2 by python3
author Goffi <goffi@goffi.org>
date Tue, 13 Aug 2019 18:58:11 +0200
parents 042a926cf3b2
children 922b2f0efa60
comparison
equal deleted inserted replaced
68:042a926cf3b2 69:0721b6254c9e
1 #!/usr/bin/env python2 1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 3
4 # SàT tmp: repository to store temporary patches for third party software 4 # SàT tmp: repository to store temporary patches for third party software
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) 6 # Copyright (C) 2009-2017 Jérôme Poisson (goffi@goffi.org)
27 27
28 28
29 setup( 29 setup(
30 name=NAME, 30 name=NAME,
31 version='0.8.0.dev0', 31 version='0.8.0.dev0',
32 description=u'Salut à Toi temporary third party patches', 32 description='Salut à Toi temporary third party patches',
33 long_description=(u'This module is used by Salut à Toi project to patch third party ' 33 long_description=('This module is used by Salut à Toi project to patch third party '
34 u'modules when the patches are not yet available upstream. Patches ' 34 'modules when the patches are not yet available upstream. Patches '
35 u'are removed from this module once merged upstream.'), 35 '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=['Development Status :: 3 - Alpha', 39 classifiers=['Development Status :: 3 - Alpha',
40 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 40 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',