aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 4fc30ca6443ae2e721976078c79b3d206ef546c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import sys
from setuptools import setup
from epy import __version__, __author__, __email__, __url__, __license__

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    name="epy-reader",
    version=__version__,
    description="Terminal/CLI Ebook (epub, fb2, mobi, azw3) Reader",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url=__url__,
    author=__author__,
    author_email=__email__,
    license=__license__,
    keywords=["epub", "epub3", "fb2", "mobi", "azw3", "CLI", "Terminal", "Reader"],
    install_requires=["mobi"] + (["windows-curses"] if sys.platform == "win32" else []),
    python_requires="~=3.0",
    py_modules=["epy"],
    entry_points={ "console_scripts": ["epy = epy:main"] },
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
        "Operating System :: OS Independent",
    ]
)