comparison setup.py @ 414:ccb2a22ea0fc

Python 3 port: /!\ Python 3.6+ is now needed to use SàT Pubsub /!\ instability may occur and features may not be working anymore, this will improve with time The same procedure as in backend has been applied (check backend commit ab2696e34d29 logs for details). Python minimal version has been updated in setup.py
author Goffi <goffi@goffi.org>
date Fri, 16 Aug 2019 12:53:33 +0200
parents ff17f5cd8300
children ee722faa3e93
comparison
equal deleted inserted replaced
413:a5edf5e1dd74 414:ccb2a22ea0fc
50 'local_scheme': local_scheme} 50 'local_scheme': local_scheme}
51 51
52 52
53 setup(name=NAME, 53 setup(name=NAME,
54 version=VERSION, 54 version=VERSION,
55 description=u'XMPP Publish-Subscribe Service Component, build for the need of ' 55 description='XMPP Publish-Subscribe Service Component, build for the need of '
56 u'the « Salut à Toi » project', 56 'the « Salut à Toi » project',
57 author='Association « Salut à Toi »', 57 author='Association « Salut à Toi »',
58 author_email='goffi@goffi.org', 58 author_email='goffi@goffi.org',
59 url='https://salut-a-toi.org', 59 url='https://salut-a-toi.org',
60 classifiers=['Development Status :: 5 - Production/Stable', 60 classifiers=['Development Status :: 5 - Production/Stable',
61 'Framework :: Twisted', 61 'Framework :: Twisted',
70 zip_safe=True, 70 zip_safe=True,
71 setup_requires=['setuptools_scm'] if is_dev_version else [], 71 setup_requires=['setuptools_scm'] if is_dev_version else [],
72 use_scm_version=sat_dev_version if is_dev_version else False, 72 use_scm_version=sat_dev_version if is_dev_version else False,
73 install_requires=install_requires, 73 install_requires=install_requires,
74 package_data={'sat_pubsub': ['VERSION']}, 74 package_data={'sat_pubsub': ['VERSION']},
75 python_requires='~=2.7', 75 python_requires='>=3.6',
76 ) 76 )