-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
37 lines (33 loc) · 937 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
import sys
from setuptools import setup
# Be verbose about Python < 3.7 being deprecated.
if sys.version_info < (3, 7):
print('\n' * 3 + '*' * 64)
print('lastcast requires Python 3.7+, and might be broken if run with\n'
'this version of Python.')
print('*' * 64 + '\n' * 3)
setup(
name='lastcast',
version='3.0.0',
description='Scrobble music to last.fm from Chromecast.',
author='Erik Price',
url='https://github.com/erik/lastcast',
packages=['lastcast'],
entry_points={
'console_scripts': [
'lastcast = lastcast.__main__:main',
],
},
license='MIT',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
'PyChromecast==12.1.4',
'click==8.1.3',
'pylast==5.0.0',
'toml==0.10.2',
]
)