-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.18 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'jiosaavn',
packages = ['jiosaavn'],
version = 'v0.1.0',
license='MIT',
description = 'Search for JioSaavn songs & album. Get song ,album, lyric & playlist information from url or id.',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'vidya sagar',
author_email = 'svidya051@gmail.com',
url = 'https://github.com/vidyasagar1432/jiosaavn',
# download_url = '',
keywords = ['jiosaavn', 'jio-saavn-api','jio-saavn','playlist','aiohttp', 'songs', 'albums', 'lyrics'],
install_requires=[
'aiohttp',
'pydantic',
'requests',
],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta', # 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',
)