-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (27 loc) · 854 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
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
from codecs import open
from os import path
setup(
name='spotty',
version='0.0.1a2',
description="Script for scraping the 'listentothis' subreddit and generating a Spotify playlist.",
url='https://github.com/benjaminr/spotty',
author='benjaminr',
license='Apache',
packages=['spotty'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Music',
'License :: OSI Approved :: Apache',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
keywords='music reddit spotify',
install_requires=['pyspotify', 'praw', 'argparse'],
entry_points={
'console_scripts': [
'spotty=spotty.spotty:main',
],
},
)