-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 718 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 718 Bytes
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
from setuptools import setup
setup(
name="JioSaavnpy",
packages=[
'jiosaavnpy',
'jiosaavnpy.saavn',
'jiosaavnpy.song',
'jiosaavnpy.playlist',
'jiosaavnpy.downloader',
'jiosaavnpy.album'
],
author='deepjyoti30',
author_email="[email protected]",
description="Download songs from JioSaavn with metadat",
long_description="",
url='https://github.com/deepjyoti30/jiosaavnpy',
entry_points={
'console_scripts': [
'jiosaavnpy = jiosaavnpy.main:main'
]
},
version='2019.20.02',
install_requires=['requests', 'lxml', 'beautifulsoup4', ]
)