-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 815 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
from setuptools import setup
setup(
name='SoundDrizzle',
version='1.0.1',
description='An easy client to add SoundCloud tracks to your offline collection',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
license='LICENSE',
author='Patrick Stegmann (aka. @wonderb0lt)',
author_email='[email protected]',
url='https://github.com/wonderb0lt/sounddrizzle',
install_requires=[
'mutagen',
'Click',
'requests',
'termcolor',
],
py_modules=['sounddrizzle'],
entry_points='''
[console_scripts]
drizzle=sounddrizzle:pour
''',
)