aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 2057e08b795f2816723aa5e5e23657e71984506a (plain) (blame)
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"] }
)