aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2020-06-18 10:33:02 +0200
committerMatěj Cepl <mcepl@cepl.eu>2020-06-18 10:34:56 +0200
commitc4a7abd99f96f37ef0b18b1fd8e3660470a98829 (patch)
tree53dcb0e00cb7cf3c144948b25eb65f7fe79ac5ef /setup.py
parentb5a7cf08178b587942c63eb119f66a5411503d1a (diff)
downloadepubgrep-c4a7abd99f96f37ef0b18b1fd8e3660470a98829.tar.gz
Make epubgrep concurrent for speed improvement.0.4.0
Surprisingly ProcessPoolExecutor is vastly faster and less memory demanding than ThreadPoolExecutor.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e55dd19..6fb4595 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup(
name="epubgrep",
- version="0.3.0",
+ version="0.4.0",
description='Grep through EPub files',
author=u'Matěj Cepl',
author_email='mcepl@cepl.eu',