diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..00edc25 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,9 @@ +include *.md +include *.rst + +exclude *.mp3 +exclude .gitignore + +global-exclude *.pyc +global-exclude *.DS_STORE + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ac5dc6b --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +#!/usr/bin/python + +from setuptools import setup, find_packages + +version = '0.0.1' + +setup( + name='bandcamp-dl', + version=version, + description='bandcamp-dl downloads albums and tracks from Bandcamp for you', + long_description=open('README.md').read(), + author='Iheanyi Ekechukwu', + author_email='iekechukwu@gmail.com', + license='Unlicense', + keywords=['bandcamp', 'downloader', 'music', 'cli', 'albums', 'dl'], + url='http://github.com/iheanyi/bandcamp-dl', + packages=find_packages(), + package_data={}, + install_requires=[ + 'wgetter>=0.6', + 'slimit>=0.8.1', + 'ply==3.4', + 'mutagen>=1.31', + 'lxml>=3.5.0', + 'docopt>=0.6.2', + 'beautifulsoup4>=4.4.1', + ], + entry_points={ + 'console_scripts': [ + 'bandcamp-dl=bandcamp_dl.bandcamp_dl:main', + ], + }, +)