From 9e40ace1f10ae7e86247d01a7d450af8c2aa181d Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Thu, 12 Mar 2020 23:08:52 -0400 Subject: [PATCH] Update project metadata --- pyproject.toml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2f5023b..d9c82a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,20 @@ [tool.poetry] name = "keyosk" version = "0.1.0-alpha-1" -description = "REST API for issuing and managing JSON web tokens" -authors = ["Ethan Paul "] +description = "Simple JWT application for HTTP-based microservices" +authors = ["Ethan Paul "] license = "MIT" repository = "https://github.com/enpaul/keyosk/" +homepage = "https://github.com/enpaul/keyosk/" +documentation = "https://github.com/enpaul/keyosk/" packages = [{include = "keyosk"}] +keywords = ["jwt", "rest", "flask", "docker", "microservice", "http"] +classifiers = [ + "Development Status :: 2 - Pre-Alpha", + "Framework :: Flask", + "License :: OSI Approved :: MIT License", + "Natural Language :: English" +] [tool.poetry.dependencies] python = "^3.6"