From 9156080dd7e08aeedf21051338e08e422ec523e4 Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Wed, 24 Nov 2021 23:04:07 -0500 Subject: [PATCH] Add pypi metadata to pyproject --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index efb94be..d1f5046 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,6 +10,22 @@ packages = [ {include = "peewee_plus.py"}, {include = "tests", format = "sdist"} ] +keywords = ["peewee", "orm", "extension", "plguin", "extra"] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Plugins", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "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", + "Programming Language :: Python :: Implementation :: CPython", + "Topic :: Database", + "Typing :: Typed" +] [tool.poetry.dependencies] python = "^3.6.1"