23 lines
495 B
Python
23 lines
495 B
Python
from setuptools import find_packages, setup
|
|
|
|
import free_bandcamp_downloader
|
|
|
|
setup(
|
|
name='free-bandcamp-downloader',
|
|
version=free_bandcamp_downloader.__version__,
|
|
packages=find_packages(),
|
|
author='7x11x13',
|
|
install_requires=[
|
|
'selenium',
|
|
'docopt',
|
|
'python-guerrillamail',
|
|
'mutagen',
|
|
'beautifulsoup4'
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'bcdl-free = free_bandcamp_downloader.main:main'
|
|
]
|
|
}
|
|
)
|