Skip to content

Commit 588f73c

Browse files
committed
add version, author and license to __init__.py
1 parent 6efaf59 commit 588f73c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1
1+
0.11.2

src/rapidfuzz/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
"""
22
rapid string matching library
33
"""
4-
from rapidfuzz import process, fuzz, levenshtein, utils
4+
__author__ = "Max Bachmann"
5+
__license__ = "MIT"
6+
__version__ = "0.11.2"
7+
8+
from rapidfuzz import process, fuzz, levenshtein, utils

0 commit comments

Comments
 (0)