mirror of
https://github.com/chatmail/core.git
synced 2026-05-08 17:36:29 +03:00
python: list requests as a requirement
It is used in `testplugin.py`.
This commit is contained in:
@@ -10,6 +10,8 @@
|
|||||||
|
|
||||||
- python: fix building of bindings against system-wide install of `libdeltachat` #2383 #2385
|
- python: fix building of bindings against system-wide install of `libdeltachat` #2383 #2385
|
||||||
|
|
||||||
|
- python: list `requests` as a requirement #2390
|
||||||
|
|
||||||
- fix creation of many delete jobs when being offline #2372
|
- fix creation of many delete jobs when being offline #2372
|
||||||
|
|
||||||
- synchronize status between devices #2386
|
- synchronize status between devices #2386
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ def main():
|
|||||||
description='Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat',
|
description='Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
author='holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors',
|
author='holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors',
|
||||||
install_requires=['cffi>=1.0.0', 'pluggy', 'imapclient'],
|
install_requires=['cffi>=1.0.0', 'pluggy', 'imapclient', 'requests'],
|
||||||
packages=setuptools.find_packages('src'),
|
packages=setuptools.find_packages('src'),
|
||||||
package_dir={'': 'src'},
|
package_dir={'': 'src'},
|
||||||
cffi_modules=['src/deltachat/_build.py:ffibuilder'],
|
cffi_modules=['src/deltachat/_build.py:ffibuilder'],
|
||||||
|
|||||||
Reference in New Issue
Block a user