From 80f50913136031527423c951f918ebb7546321f1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 14 Jun 2021 16:32:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=92=20Add=20metadata=20to=20pyproject.?= =?UTF-8?q?toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e67c522..1dec97e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,21 @@ [tool.poetry] name = "async-chain" -version = "0.1.0" -description = "" +version = "0.1.1" +description = "A coroutine builder" authors = ["Stefano Pigozzi "] license = "LGPL-3.0-or-later" +readme = "README.md" +repository = "https://github.com/Steffo99/async-chain" +documentation = "https://github.com/Steffo99/async-chain/blob/main/README.md" +keywords = ["asyncio"] +classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3.9", + "Framework :: AsyncIO", +] [tool.poetry.dependencies] python = "^3.9"