-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (41 loc) · 1.35 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
from setuptools import setup, find_packages
setup(
name="fajrGPT",
version="1.7.2",
author="Malek Ibrahim",
author_email="shmeek8@gmail.com",
description=("A Python application to assist in waking up for Fajr prayer "
"by providing 3 interactive verses/explanations from the Quran + ChatGPT explanations "
"accompanied by a soothing Islamic prayer fade-in and fade-out audio file from YouTube."),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/malekinho8/quran-wake-up",
packages=find_packages(),
package_data={
# Include all MP3 files in the 'assets' subdirectory as well as txt files in fajrGPT
'fajrGPT': ['assets/noise/*.mp3', 'assets/prompt/*.txt', 'assets/prompt/scholars/*.txt'],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
python_requires='>=3.8',
install_requires=[
"click",
"pygame",
"pydub",
"moviepy",
"openai",
"tqdm",
"mutagen",
"scipy",
"TheQuranModule"
],
entry_points={
'console_scripts': [
'fajrGPT=fajrGPT.wake:main',
],
},
)