From 49ef085fa8e453d49ed593450513dc1c22f957e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 27 May 2021 13:57:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20pyproject=20metadata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 834d539..3e5d477 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,36 @@ [tool.poetry] name = "poetry-version-plugin" version = "0.1.2" -description = "" +description = "Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag." authors = ["Sebastián Ramírez "] +homepage = "https://github.com/tiangolo/poetry-version-plugin" +documentation = "https://github.com/tiangolo/poetry-version-plugin" readme = "README.md" packages = [{include = "poetry_version_plugin"}] +classifiers = [ + "Intended Audience :: Developers", + "Intended Audience :: Information Technology", + "Intended Audience :: System Administrators", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python", + "Topic :: Software Development :: Libraries :: Application Frameworks", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Software Development :: Libraries", + "Topic :: Software Development :: Version Control :: Git", + "Topic :: Software Development", + "Topic :: System :: Archiving :: Packaging", + "Topic :: System :: Installation/Setup", + "Topic :: System :: Software Distribution", + "Development Status :: 3 - Alpha", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "License :: OSI Approved :: MIT License" +] [tool.poetry.dependencies] python = "^3.6"