Skip to content

Commit

Permalink
testing gitub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
codeperfectplus committed Oct 22, 2020
1 parent f0b57fe commit 89a61e2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 28 deletions.
16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,13 @@
Create new Virtual ENV:

```sh
pip install pipenv
pipenv install -r requirements.txt
pipenv shell
pip install audiobook
```

## Usage example

Audio Book is Python script to read pdf files.Use command link to enter the file location

```sh
python3 read_my_book.py <book_path>
```python
from audiobook import Audiobook
ab = Audiobook("file_path")
ab.text_to_speech()
```

### Linux installation requirements
Expand All @@ -28,5 +24,3 @@ python3 read_my_book.py <book_path>
```sh
sudo apt update && sudo apt install espeak ffmpeg libespeak1
```

documentation:- <https://github.com/nateshmbhat/pyttsx3>
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[metadata]
# This includes the license file(s) in the wheel.
license_files = LICENSE
25 changes: 8 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,35 +1,26 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
#Here is the module name.
name="audiobook",
#version of the module
version="1.0.0",
#Name of Author
version="1.0.2",
author="CodePerfectPlus",
#your Email address
author_email="[email protected]",
#Small Description about module
description="listen your favourite audiobook",
description="Listen your favourite audiobook",
long_description=long_description,
#Specifying that we are using markdown file for description
long_description_content_type='text/x-rst',
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",
keywords="audiobook",
packages=setuptools.find_packages(),
#classifiers like program is suitable for python3, just leave as it is.
classifiers=[
"Development Status :: 3 - Alpha",
"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',

'Intended Audience :: Developers',
],
)

0 comments on commit 89a61e2

Please sign in to comment.