forked from CharlesPikachu/musicdl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 791 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 791 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
26
27
28
29
30
31
32
'''
Function:
setup
Author:
Charles
微信公众号:
Charles的皮卡丘
GitHub:
https://github.com/CharlesPikachu
'''
import MusicDownloader
from setuptools import setup, find_packages
setup(
name='MusicDownloader',
version=MusicDownloader.__version__,
description='MusicDownloader which supports qq, wangyiyun, xiami, kuwo, kugou and qianqian.',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent'],
author='Charles',
url='https://github.com/CharlesPikachu/Music-Downloader',
author_email='charlesjzc@qq.com',
license='MIT',
include_package_data=True,
install_requires=['requests', 'click', 'pycryptodome'],
zip_safe=True,
packages=find_packages()
)