diff options
-rwxr-xr-x | epy.py | 5 | ||||
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 6 insertions, 3 deletions
@@ -23,7 +23,7 @@ examples: """ -__version__ = "2022.2.5" +__version__ = "2022.2.14" __license__ = "GPL-3.0" __author__ = "Benawi Adha" __email__ = "benawiadha@gmail.com" @@ -3975,4 +3975,7 @@ def main(): if __name__ == "__main__": + # On Windows, calling this method is necessary + # On Linux/OSX, this method does nothing + multiprocessing.freeze_support() main() diff --git a/pyproject.toml b/pyproject.toml index d4a865c..c04f92d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "epy-reader" -version = "2022.2.5" +version = "2022.2.14" description = "CLI Ebook Reader" authors = ["Benawi Adha <benawiadha@gmail.com>"] license = "GPL-3.0" @@ -6,7 +6,7 @@ with open("README.md", "r") as fh: setup( name="epy-reader", - version="2022.2.5", + version="2022.2.14", description="Terminal/CLI Ebook (epub, fb2, mobi, azw3) Reader", long_description=long_description, long_description_content_type="text/markdown", |