aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwustho <benawiadha@gmail.com>2020-09-20 20:01:14 +0700
committerwustho <benawiadha@gmail.com>2020-09-20 20:01:14 +0700
commit9adca44e8a28cd4f96f64ac8f945957bbd2048ca (patch)
treefcd1e2ec7354656e78962fa7e65725d7b2f23845
parentb376bc44d45213596578b9afa378c62f9743bf56 (diff)
downloadepy-9adca44e8a28cd4f96f64ac8f945957bbd2048ca.tar.gz
Fix minor: importing meta like version, etc.
-rwxr-xr-xepy.py2
-rw-r--r--setup.py10
2 files changed, 6 insertions, 6 deletions
diff --git a/epy.py b/epy.py
index c0d445c..cf07cde 100755
--- a/epy.py
+++ b/epy.py
@@ -930,7 +930,7 @@ def det_ebook_cls(file):
elif filext == ".mobi":
return Mobi(file)
else:
- sys.exit("ERR: Format not supported. (Supported: epub, fb2)")
+ sys.exit("ERR: Format not supported. (Supported: epub, fb2, mobi)")
def dots_path(curr, tofi):
diff --git a/setup.py b/setup.py
index cb53d52..086ed2f 100644
--- a/setup.py
+++ b/setup.py
@@ -1,14 +1,14 @@
import sys
from setuptools import setup
-from epy import __version__, __author__, __url__, __license__
+# from epy import __version__, __author__, __url__, __license__
setup(
name = "epy",
- version = __version__,
+ version = "2020.9.20",
description = "Terminal/CLI Epub Reader (Fork of https://github.com/wustho/epr with Reading Pctg)",
- url = __url__,
- author = __author__,
- license = __license__,
+ url = "https://github.com/wustho/epy",
+ author = "Benawi Adha",
+ license = "GPL-3.0",
keywords = ["EPUB", "EPUB3", "CLI", "Terminal", "Reader"],
install_requires = ["mobi"] + (["windows-curses"] if sys.platform == "win32" else []),
python_requires = "~=3.0",