forked from jshiohaha/JapaneseVerbConjugator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b679f42
commit efffda4
Showing
1 changed file
with
23 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="[email protected]"}] | ||
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] | ||
|