This repository has been archived by the owner on Dec 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (43 loc) · 1.56 KB
/
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
42
43
44
45
46
47
48
49
from __future__ import unicode_literals
import re
from setuptools import find_packages, setup
def get_version(filename):
content = open(filename).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content))
return metadata['version']
setup(
name='Mopidy-Spotify-Tunigo',
version=get_version('mopidy_spotify_tunigo/__init__.py'),
url='https://github.com/trygveaa/mopidy-spotify-tunigo',
license='Apache License, Version 2.0',
author='Trygve Aaberge',
author_email='[email protected]',
description='Mopidy extension for providing the browse feature of Spotify',
long_description=open('README.rst').read(),
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
include_package_data=True,
install_requires=[
'Mopidy >= 0.19.0',
'Mopidy-Spotify >= 1.2.0',
'Pykka >= 1.1',
'setuptools',
'tunigo >= 1.0.0',
],
entry_points={
'mopidy.ext': [
'spotify_tunigo = mopidy_spotify_tunigo:Extension',
],
},
classifiers=[
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Multimedia :: Sound/Audio :: Players',
],
)