-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (50 loc) · 2.19 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
from catholic.version import version
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="catholic-cli",
version=version,
description="A Command Line Utility for Accessing Information Related to The Catholic Church",
long_description=readme,
long_description_content_type='text/markdown',
author="Aseem Savio",
author_email="aseemsavio3@gmail.com",
url="https://github.com/aseemsavio/catholic-cli/blob/master/README.md",
license="MIT",
keywords="christianity, catholicism, catholic, christian, religion, cli",
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
data_files=[("catholic/pickles", ["catholic/pickles/canon.pickle",
"catholic/pickles/catechism.pickle",
"catholic/pickles/girm.pickle"
]),
("catholic/index", ["catholic/index/canon_index/_MAIN_1.toc",
"catholic/index/canon_index/MAIN_jcfftbwmodlertj6.seg",
"catholic/index/canon_index/MAIN_WRITELOCK",
"catholic/index/catechism_index/_MAIN_1.toc",
"catholic/index/catechism_index/MAIN_WRITELOCK",
"catholic/index/catechism_index/MAIN_x9ce2efhbz9dvnt0.seg",
"catholic/index/missal_index/_MAIN_1.toc",
"catholic/index/missal_index/MAIN_jg57nqsiitr2bdya.seg",
"catholic/index/missal_index/MAIN_WRITELOCK"
])
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'typer[all]>=0.7.0',
"Click>=7",
"rich>=12",
"questionary>=1.10.0",
"Whoosh==2.7.4"
],
entry_points={
'console_scripts': [
'catholic=catholic.catholic:cli',
],
},
)