-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 976 Bytes
/
setup.py
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
from setuptools import setup
def readme():
with open("README.rst", "r") as f:
return f.read()
setup( name="SolaScriptura",
version="0.1.3",
description="A cross-platform interactive Bible reader for the terminal",
long_description=readme(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Topic :: Religion"
],
keywords="bible reader interactive terminal",
url="https://github.com/glitchassassin/sola-scriptura",
author="Jon Winsley",
author_email="[email protected]",
license="MIT",
packages=["solascriptura", "solascriptura.modules"],
install_requires=["urwid", "pysword", "bs4"],
entry_points={"console_scripts": ["solascriptura = solascriptura:main"]},
zip_safe=False
)