2022-02-03 20:06:30 +01:00
|
|
|
[metadata]
|
|
|
|
name = asyncio-taskpool
|
2022-03-13 15:18:53 +01:00
|
|
|
version = 0.6.1
|
2022-02-03 20:10:26 +01:00
|
|
|
author = Daniil Fajnberg
|
|
|
|
author_email = mail@daniil.fajnberg.de
|
2022-02-03 20:06:30 +01:00
|
|
|
description = Dynamically manage pools of asyncio tasks
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
2022-02-09 23:14:42 +01:00
|
|
|
keywords = asyncio, concurrency, tasks, coroutines, asynchronous, server
|
2022-02-03 20:06:30 +01:00
|
|
|
url = https://git.fajnberg.de/daniil/asyncio-taskpool
|
|
|
|
project_urls =
|
|
|
|
Bug Tracker = https://git.fajnberg.de/daniil/asyncio-taskpool/issues
|
|
|
|
classifiers =
|
2022-02-09 23:14:42 +01:00
|
|
|
Development Status :: 3 - Alpha
|
2022-02-03 20:06:30 +01:00
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Operating System :: OS Independent
|
2022-02-09 23:14:42 +01:00
|
|
|
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
|
|
|
Intended Audience :: Developers
|
|
|
|
Intended Audience :: System Administrators
|
|
|
|
Framework :: AsyncIO
|
|
|
|
Topic :: Software Development :: Libraries
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
2022-02-03 20:06:30 +01:00
|
|
|
|
|
|
|
[options]
|
|
|
|
package_dir =
|
|
|
|
= src
|
|
|
|
packages = find:
|
2022-02-03 20:10:26 +01:00
|
|
|
python_requires = >=3.8
|
2022-02-03 20:06:30 +01:00
|
|
|
|
|
|
|
[options.extras_require]
|
|
|
|
dev =
|
|
|
|
coverage
|
|
|
|
|
|
|
|
[options.packages.find]
|
|
|
|
where = src
|