aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenawi Adha <43810055+wustho@users.noreply.github.com>2019-10-23 23:21:54 +0700
committerGitHub <noreply@github.com>2019-10-23 23:21:54 +0700
commitb68cf694c3f841381631b3bf27136e15a4e1e9d4 (patch)
tree3a2f8ba291b6966ff2a6ea78b46ebe77a18aa601
parent07c3cc3c1fcf1aa7a7697f4852453af3ab8c7d01 (diff)
downloadepy-b68cf694c3f841381631b3bf27136e15a4e1e9d4.tar.gz
Delete setup.py
-rw-r--r--setup.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/setup.py b/setup.py
deleted file mode 100644
index 48bf88a..0000000
--- a/setup.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import sys
-from setuptools import setup
-from epr import __version__, __author__, __url__, __license__
-
-setup(
- name = "epy",
- version = __version__,
- description = "Terminal/CLI Epub Reader (Fork of https://github.com/wustho/epr)",
- 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"] }
-)