-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ecb75f2
commit f0b57fe
Showing
4 changed files
with
16 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ __pycache__/ | |
|
||
# C extensions | ||
*.so | ||
.vscode | ||
|
||
# Distribution / packaging | ||
.Python | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,32 +6,30 @@ | |
setuptools.setup( | ||
#Here is the module name. | ||
name="audiobook", | ||
|
||
#version of the module | ||
version="0.0.1", | ||
|
||
version="1.0.0", | ||
#Name of Author | ||
author="CodePerfectPlus", | ||
|
||
#your Email address | ||
author_email="[email protected]", | ||
|
||
#Small Description about module | ||
description="listen your favourite audiobook", | ||
|
||
long_description=long_description, | ||
|
||
#Specifying that we are using markdown file for description | ||
long_description_content_type="text/markdown", | ||
|
||
#Any link to reach this module, if you have any webpage or github profile | ||
url="https://github.com/codePerfectPlus/audiobook", | ||
packages=setuptools.find_packages(), | ||
|
||
#classifiers like program is suitable for python3, just leave as it is. | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Developers', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: Linux :: Linux', | ||
|
||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from audiobook import Audiobook | ||
|
||
ab = Audiobook("/home/codeperfectplus/Documents/Books/learningopencv.pdf") | ||
ab.text_to_speech() |