Add files necessary for packaging.

master
Iheanyi Ekechukwu 2015-12-11 18:03:14 -06:00
parent ece554324f
commit 9383b60030
2 changed files with 42 additions and 0 deletions

9
MANIFEST.in Normal file
View File

@ -0,0 +1,9 @@
include *.md
include *.rst
exclude *.mp3
exclude .gitignore
global-exclude *.pyc
global-exclude *.DS_STORE

33
setup.py Normal file
View File

@ -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',
],
},
)