-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
33 lines (27 loc) · 879 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='sdmusic',
version='0.13',
packages=find_packages('src'),
package_dir = {'':'src'},
install_requires=[
'requests>=2.17.3',
'pycrypto>=2.6.1',
'mutagen>=1.38.0',
'tqdm>=4.19.5',
'pydub>=0.20.0',
'tabulate>=0.8.2'
],
entry_points={
'console_scripts': [
'sdmusic = sd_music.start:main',
]
},
license='MIT',
author='pcdack',
author_email='[email protected]',
url='https://github.com/pcdack/SDMUSIC',
description='Search && Download Music from netease qq,1ting,kugou and xiami',
keywords=['sdmusic', 'netease','qq','kugou', 'music', 'downloader'],
)