-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
45 lines (43 loc) · 1.2 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
36
37
38
39
40
41
42
43
44
45
from distutils.core import setup
import setuptools
with open("README.md","r") as f:
long_description = f.read()
setuptools.setup(
name = 'pymusicdl',
packages = setuptools.find_packages(),
version = '1.5.0',
license='MIT',
description = 'Download spotify and youtube playlists without having to enter any API keys!',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'C Vamshi Krishna',
author_email = '[email protected]',
url = 'https://github.com/insaiyancvk/pymusicdl/',
keywords = [
'spotify',
'youtube',
'music download',
'music',
'youtube download',
'spotify download'
],
include_package_data=True,
install_requires=[
'pytube',
'requests',
'rich',
'spotipy',
'urllib3',
'youtube-dl',
'youtube-title-parse',
'yt-dlp',
'windows-curses; platform_system=="Windows"'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8'
]
)