Requirements update, setup changes

master
Anthony Forsberg 2017-02-07 20:23:25 -05:00
parent fcd7526d5c
commit 360732cdcc
5 changed files with 16 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
# custom
.cache
*.py[cod]
# C extensions

View File

@ -5,3 +5,4 @@ mutagen==1.35.1
requests==2.12.4
unicode-slugify==0.1.3
mock==2.0.0
chardet==2.3.0

View File

@ -6,3 +6,5 @@ docopt==0.6.2
mutagen==1.35.1
requests==2.12.4
unicode-slugify==0.1.3
mock==2.0.0
chardet==2.3.0

View File

@ -1,5 +1,5 @@
[bdist_wheel]
universal = 1
universal = 0
[metadata]
license_file = LICENSE

View File

@ -1,12 +1,16 @@
from setuptools import setup, find_packages
from codecs import open
from os import path
import sys
if sys.version_info[0] == 2:
sys.exit('Python 2 is unsupported.')
here = path.abspath(path.dirname(__file__))
setup(
name='bandcamp-downloader',
version='0.0.7-06',
version='0.0.7-08',
description='bandcamp-dl downloads albums and tracks from Bandcamp for you',
long_description=open('README.rst').read(),
url='https://github.com/iheanyi/bandcamp-dl',
@ -18,7 +22,10 @@ setup(
'Intended Audience :: End Users/Desktop',
'Topic :: Multimedia :: Sound/Audio',
'License :: Public Domain',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=['bandcamp', 'downloader', 'music', 'cli', 'albums', 'dl'],
packages=find_packages(),
@ -30,6 +37,7 @@ setup(
'requests',
'unicode-slugify',
'mock',
'chardet==2.3.0',
],
entry_points={
'console_scripts': [