Skip to content

Commit

Permalink
add version info
Browse files Browse the repository at this point in the history
  • Loading branch information
letuananh committed Jun 1, 2021
1 parent c4abdf1 commit b150820
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions jamdictapp/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Jamdict-web - Japanese Reading Assistant

# This code is a part of jamdict-web library: https://github.com/neocl/jamdict-web
# :copyright: (c) 2021 Le Tuan Anh <[email protected]>
# :license: MIT, see LICENSE for more details.

__author__ = "Le Tuan Anh"
__email__ = "[email protected]"
__copyright__ = "Copyright (c) 2021, Le Tuan Anh"
__credits__ = []
__license__ = "MIT License"
__description__ = "Free and open-source Japanese Reading Assistant with morphological analyser, Japanese-English dictionary, Kanji dictionary, and Japanese Names dictionary"
__url__ = "https://github.com/neocl/jamdict-web"
__maintainer__ = "Le Tuan Anh"
__version_major__ = "1.0"
__version__ = "{}b1".format(__version_major__)
__status__ = "4 - Beta"
__version_long__ = "{} - {}".format(__version_major__, __status__)

0 comments on commit b150820

Please sign in to comment.