1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import sys
from setuptools import setup
from epy import __version__, __author__, __url__, __license__
setup(
name = "epy",
version = __version__,
description = "Terminal/CLI Epub Reader (Fork of https://github.com/wustho/epr with Reading Pctg)",
url = __url__,
author = __author__,
license = __license__,
keywords = ["EPUB", "EPUB3", "CLI", "Terminal", "Reader"],
install_requires = ["windows-curses"] if sys.platform == "win32" else [],
python_requires = "~=3.0",
py_modules = ["epy"],
entry_points = { "console_scripts": ["epy = epy:main"] }
)
|