From efffda440150c6232f4dff3c383f85e831146c45 Mon Sep 17 00:00:00 2001 From: Bel-Shazzar Date: Mon, 13 Jan 2025 19:34:52 +0100 Subject: [PATCH] Update pyproject.toml --- pyproject.toml | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 30eb5fa..2a1d2fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,32 @@ -[tool.poetry] +[project] name = "japanese-verb-conjugator-v2" -version = "0.4.0" +version = "1.0.0" description = "Fork of the project https://github.com/jshiohaha/JapaneseVerbConjugator" authors = ["Jacob Shiohira"] -license = "BSD" +maintainers = [{name="Markus Kruse", email="belshazzar314@gmail.com"}] +license = {file = "LICENSE"} readme = "README.md" +classifiers = [ + "Development Status :: 5 - Production/Stable", + + "Intended Audience :: Developers", + "Operating System :: OS Independent" + "Topic :: Text Processing :: Linguistic" + + "License :: OSI Approved :: BSD License", + + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", +] +keywords = ["japanese", "verb", "conjugation", "romaji", "hiragana", "katakana", "kanji"] +python-requires = "^3.8" [tool.poetry.dependencies] -python = "^3.12" +python = "^3.8" python-romkan-ng = "^0.3.0" [tool.poetry.group.dev]