Updated setup.py, fixed lingering differences

setup.py now has both Python tags.

Fixed some lingering spacing differences.
master
Anthony Forsberg 2016-12-15 20:50:37 -05:00
parent a8ebb47e3e
commit 3c3f2f230e
2 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class BandcampDownloader:
"track": track['track'],
"date": album['date']
}
print("Accessing track " + str(track_index+1) + " of " + str(len(album['tracks'])))
print("Accessing track " + str(track_index + 1) + " of " + str(len(album['tracks'])))
filename = self.template_to_path(track_meta)
dirname = self.create_directory(filename)

View File

@ -22,6 +22,7 @@ setup(
'Topic :: Multimedia :: Sound/Audio',
'License :: Public Domain',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
keywords=['bandcamp', 'downloader', 'music', 'cli', 'albums', 'dl'],
packages=find_packages(),