From 71657098805b996b22e83405af86680e2d67b239 Mon Sep 17 00:00:00 2001 From: Mathieu Kniewallner Date: Sat, 1 Oct 2022 09:19:57 +0200 Subject: [PATCH] chore: add more package metadata (#145) --- pyproject.toml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0b47fa06..f27d2e7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,11 +3,21 @@ name = "deptry" version = "0.0.1" description = "A command line utility to check for obsolete, missing and transitive dependencies in a Python project." authors = ["Florian Maas "] +maintainers = ["Mathieu Kniewallner "] repository = "https://github.com/fpgmaas/deptry" documentation = "https://fpgmaas.github.io/deptry/" readme = "README.md" +license = "MIT" packages = [ - {include = "deptry"} + { include = "deptry" } +] +keywords = ["dependency", "poetry"] +classifiers = [ + "Development Status :: 3 - Alpha", + "Environment :: Console", + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Software Development :: Quality Assurance", ] [tool.poetry.dependencies] @@ -50,7 +60,11 @@ ignore_missing_imports = true [tool.deptry] exclude = [ - 'venv','.venv','docs','tests','scripts' + "venv", + ".venv", + "docs", + "tests", + "scripts", ] ignore_missing = ["tomllib"]