forked from strizhechenko/bandcamp-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 883 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# coding=utf-8
from setuptools import setup
setup(
name='bandcamp-player',
version='0.2.1',
packages=['bandcamp_player', 'bandcamp_parser'],
url='https://github.com/strizhechenko/bandcamp-player',
license='MIT',
author='Oleg Strizhechenko',
author_email='oleg.strizhechenko@gmail.com',
description='Utility for streaming random music from bandcamp by specified tag',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Topic :: Multimedia :: Sound/Audio',
'License :: Public Domain',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'beautifulsoup4',
'requests',
'bandcamp-downloader'
],
entry_points={
'console_scripts': [
'bandcamp-player=bandcamp_player.__init__:main',
],
},
)