From 2e57447f5c27af2a54ac3a96608f3e59e7591d30 Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Thu, 3 Feb 2022 20:10:26 +0100 Subject: [PATCH] meta adjustments --- README.md | 2 +- setup.cfg | 8 +++----- src/{package_name => asyncio_taskpool}/__init__.py | 0 3 files changed, 4 insertions(+), 6 deletions(-) rename src/{package_name => asyncio_taskpool}/__init__.py (100%) diff --git a/README.md b/README.md index 28944cb..e9aa470 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Dynamically manage pools of asyncio tasks ## Dependencies -Python Version ..., OS ... +Python Version 3.8+, tested on Linux ## Building from source diff --git a/setup.cfg b/setup.cfg index 3ddb293..f0a9d25 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,8 @@ [metadata] name = asyncio-taskpool version = 0.0.1 -author = Daniil -author_email = mail@placeholder123.to +author = Daniil Fajnberg +author_email = mail@daniil.fajnberg.de description = Dynamically manage pools of asyncio tasks long_description = file: README.md long_description_content_type = text/markdown @@ -17,9 +17,7 @@ classifiers = package_dir = = src packages = find: -python_requires = >=3 -install_requires = - ... +python_requires = >=3.8 [options.extras_require] dev = diff --git a/src/package_name/__init__.py b/src/asyncio_taskpool/__init__.py similarity index 100% rename from src/package_name/__init__.py rename to src/asyncio_taskpool/__init__.py