-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
f0b57fe
commit 89a61e2
Showing
3 changed files
with
16 additions
and
28 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
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,3 @@ | ||
[metadata] | ||
# This includes the license file(s) in the wheel. | ||
license_files = LICENSE |
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 |
---|---|---|
@@ -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', | ||
], | ||
) |