-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 822 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
# coding=utf-8
from setuptools import setup
setup(
name='bandcamp-player-evo',
version='0.0.0',
packages=['bandcamp_player', 'bandcamp_parser'],
url='https://github.com/strizhechenko/bandcamp-player',
license='MIT',
author='helder opdebeeck',
author_email='[email protected]',
description='Utility for streaming random music from bandcamp by specified genre/subgenre',
classifiers=[
'Development Status :: 0 - Beta',
'Intended Audience :: End Users/Desktop',
'Topic :: Multimedia :: Sound/Audio',
'License :: Public Domain',
'Programming Language :: Python :: 3.6',
],
install_requires=[
],
entry_points={
'console_scripts': [
'bandcamp-player-evo=bandcamp_player.__init__:main',
],
},
)