1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Source: python-aioshutil
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Ananthu C V <weepingclown@disroot.org>
Build-Depends: debhelper-compat (= 13),
dh-python,
pybuild-plugin-pyproject,
python3-all,
python3-pytest,
python3-pytest-asyncio,
python3-setuptools,
python3-setuptools-scm
Standards-Version: 4.7.0
Testsuite: autopkgtest-pkg-pybuild
Homepage: https://github.com/kumaraditya303/aioshutil
Vcs-Git: https://salsa.debian.org/python-team/packages/python-aioshutil.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-aioshutil
Rules-Requires-Root: no
Package: python3-aioshutil
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: asynchronous shutil module
aioshutil is a Python library which provides asynchronous version of
function of shutil module. shutil module is blocking and using it in
asyncio applications will block the event loop and slow down the
application, aioshutil provides asynchronous friendly versions of the
functions of the shutil module as it performs blocking io in a thread pool.
|