You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
#!/usr/bin/python |
|
# -*- coding: utf-8 -*- |
|
|
|
from setuptools import setup, find_packages |
|
import os |
|
|
|
import scdl |
|
|
|
setup( |
|
name='scdl', |
|
version=scdl.__version__, |
|
packages=find_packages(), |
|
author="FlyinGrub", |
|
author_email="flyinggrub@gmail.com", |
|
description="Download Music from Souncloud", |
|
long_description=open('README.md').read(), |
|
install_requires=[ |
|
'docopt', |
|
'soundcloud', |
|
'wget', |
|
'configparser', |
|
'mutagen' |
|
], |
|
data_files=[ |
|
(os.path.join(os.path.expanduser('~'), '.config/scdl'), ['config/scdl.cfg']) |
|
], |
|
include_package_data=True, |
|
url='https://github.com/flyingrub/scdl', |
|
classifiers=[ |
|
"Programming Language :: Python", |
|
"Development Status :: 4 - BETA", |
|
"License :: GPLv2", |
|
"Operating System :: OS Independent", |
|
"Programming Language :: Python :: 3.4", |
|
'Topic :: Internet', |
|
'Topic :: Multimedia :: Sound/Audio', |
|
], |
|
entry_points={ |
|
'console_scripts': [ |
|
'scdl = scdl.scdl:main', |
|
], |
|
}, |
|
)
|
|
|