diff options
author | wustho <benawiadha@gmail.com> | 2020-09-20 20:01:14 +0700 |
---|---|---|
committer | wustho <benawiadha@gmail.com> | 2020-09-20 20:01:14 +0700 |
commit | 9adca44e8a28cd4f96f64ac8f945957bbd2048ca (patch) | |
tree | fcd1e2ec7354656e78962fa7e65725d7b2f23845 | |
parent | b376bc44d45213596578b9afa378c62f9743bf56 (diff) | |
download | epy-9adca44e8a28cd4f96f64ac8f945957bbd2048ca.tar.gz |
Fix minor: importing meta like version, etc.
-rwxr-xr-x | epy.py | 2 | ||||
-rw-r--r-- | setup.py | 10 |
2 files changed, 6 insertions, 6 deletions
@@ -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): @@ -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", |