-
Notifications
You must be signed in to change notification settings - Fork 0
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
6651d38
commit 6c8d4d1
Showing
6 changed files
with
48 additions
and
21 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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
# vscode | ||
|
||
.vscode | ||
.pypirc | ||
|
||
# python | ||
|
||
__pycache__/ | ||
.venv/ | ||
.venv/ | ||
dist | ||
JioSaavn.egg-info |
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
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,2 @@ | ||
include README.md | ||
recursive-include JioSaavn *.py |
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 |
---|---|---|
@@ -1,11 +1,34 @@ | ||
import setuptools | ||
from setuptools import setup | ||
# from distutils.core import setup | ||
|
||
setuptools.setup(name='JioSaavn', | ||
version='v0.0.2-alpha', | ||
description='JioSaavn Api', | ||
url='https://github.com/vidyasagar1432/JioSaavn', | ||
author='vidya sagar', | ||
install_requires=['aiohttp'], | ||
author_email='', | ||
packages=setuptools.find_packages(), | ||
zip_safe=False) | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
|
||
setup( | ||
name = 'JioSaavn', | ||
packages = ['JioSaavn'], | ||
version = 'v0.0.2', | ||
license='MIT', | ||
description = 'Search for JioSaavn songs & album. Get song ,album & lyric information.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author = 'vidya sagar', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/vidyasagar1432/JioSaavn', | ||
download_url = 'https://github.com/vidyasagar1432/JioSaavn/archive/refs/tags/v0.0.2-alpha.zip', | ||
keywords = ['jiosaavn', 'jiosaavnapi', 'songs', 'albums', 'lyrics'], | ||
install_requires=[ | ||
'aiohttp', | ||
], | ||
include_package_data=True, | ||
zip_safe=False, | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
], | ||
python_requires='>=3.6', | ||
) |