Skip to content

Commit ebd1f93

Browse files
committed
fix: version 0.0.6
1 parent 62ae722 commit ebd1f93

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

persian_tools/__init__.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
__author__ = 'Ali Madihi (mrunderline)'
2-
__version__ = '0.0.2'
2+
__version__ = '0.0.6'
33
__date__ = '2021-02-20'
44

5-
6-
class LANGUAGES:
7-
EN = 'en'
8-
FA = 'fa'
9-
AR = 'ar'
5+
from persian_tools import *

persian_tools/bank/__init__.py

Whitespace-only changes.

persian_tools/digits/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
from typing import Union
2-
from .. import LANGUAGES
32
from math import floor
43
from .strings import SCALE, NUMBER_TEXT
54
from ..ordinal_suffix import add as add_ordinal_suffix
65

6+
7+
class LANGUAGES:
8+
EN = 'en'
9+
FA = 'fa'
10+
AR = 'ar'
11+
12+
713
SUPPORTED_CHARS = {
814
LANGUAGES.EN: '0123456789',
915
LANGUAGES.FA: '۰۱۲۳۴۵۶۷۸۹',

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = persian_tools
3-
version = 0.0.2
3+
version = 0.0.6
44
author = Ali Madihi (mrunderline)
55
author_email = alimadihib@gmail.com
66
description = An anthology of a variety of tools for the Persian language in Python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.setup(
1010
name='persian_tools',
11-
packages=['persian_tools'],
11+
packages=setuptools.find_packages(),
1212
version=import_module('persian_tools').__version__,
1313
license='MIT',
1414
description='An anthology of a variety of tools for the Persian language in Python',

0 commit comments

Comments
 (0)