Mercurial > libervia-backend
comparison setup.py @ 3040:fee60f17ebac
jp: jp asyncio port:
/!\ this commit is huge. Jp is temporarily not working with `dbus` bridge /!\
This patch implements the port of jp to asyncio, so it is now correctly using the bridge
asynchronously, and it can be used with bridges like `pb`. This also simplify the code,
notably for things which were previously implemented with many callbacks (like pagination
with RSM).
During the process, some behaviours have been modified/fixed, in jp and backends, check
diff for details.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 25 Sep 2019 08:56:41 +0200 |
parents | 3338c6a634f5 |
children | 691283719bb2 |
comparison
equal
deleted
inserted
replaced
3039:a1bc34f90fa5 | 3040:fee60f17ebac |
---|---|
85 author="Association « Salut à Toi »", | 85 author="Association « Salut à Toi »", |
86 author_email="contact@goffi.org", | 86 author_email="contact@goffi.org", |
87 url="https://salut-a-toi.org", | 87 url="https://salut-a-toi.org", |
88 classifiers=[ | 88 classifiers=[ |
89 "Programming Language :: Python :: 3 :: Only", | 89 "Programming Language :: Python :: 3 :: Only", |
90 "Programming Language :: Python :: 3.6", | |
91 "Programming Language :: Python :: 3.7", | 90 "Programming Language :: Python :: 3.7", |
92 "Development Status :: 5 - Production/Stable", | 91 "Development Status :: 5 - Production/Stable", |
93 "Environment :: Console", | 92 "Environment :: Console", |
94 "Framework :: Twisted", | 93 "Framework :: Twisted", |
95 "License :: OSI Approved :: GNU Affero General Public License v3 " | 94 "License :: OSI Approved :: GNU Affero General Public License v3 " |
108 zip_safe=False, | 107 zip_safe=False, |
109 setup_requires=["setuptools_scm"] if is_dev_version else [], | 108 setup_requires=["setuptools_scm"] if is_dev_version else [], |
110 use_scm_version=sat_dev_version if is_dev_version else False, | 109 use_scm_version=sat_dev_version if is_dev_version else False, |
111 install_requires=install_requires, | 110 install_requires=install_requires, |
112 package_data={"sat": ["VERSION"]}, | 111 package_data={"sat": ["VERSION"]}, |
113 python_requires=">=3.6", | 112 python_requires=">=3.7", |
114 ) | 113 ) |