forked from sk1418/zhuaxia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 767 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
from setuptools import setup, find_packages
import glob
import zhuaxia.zxver as zxver
setup(
name = 'zhuaxia',
version = zxver.version,
install_requires=['pycrypto', 'requests','mutagen','beautifulsoup4' ],
packages = find_packages(),
package_data={'zhuaxia':['conf/default.*']},
#data_files=[('conf',glob.glob('conf/*.*'))],
include_package_data= True,
zip_safe=False,
scripts=['zx'],
author='Kai Yuan',
author_email='[email protected]',
platforms=['POSIX'],
keywords='xiami mp3 download',
url='https://github.com/sk1418/zhuaxia',
description='a cli tool to download mp3 from xiami.com and music.163',
long_description="""
a cli tool to download mp3 from xiami.com and music.163
""",
)