47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
from __future__ import unicode_literals
|
|
|
|
import re
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
def get_version(filename):
|
|
with open(filename) as fh:
|
|
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read()))
|
|
return metadata['version']
|
|
|
|
|
|
setup(
|
|
name='Mopidy-RadioNet',
|
|
version=get_version('mopidy_radionet/__init__.py'),
|
|
url='https://github.com/blackberrymamba/mopidy-radionet',
|
|
license='Apache License, Version 2.0',
|
|
author='blackberrymamba',
|
|
author_email='mariusz@typedef.pl',
|
|
description='Mopidy extension for radio.net',
|
|
long_description=open('README.rst').read(),
|
|
packages=find_packages(exclude=['tests', 'tests.*']),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
python_requires='>= 2.7, < 3',
|
|
install_requires=[
|
|
'setuptools',
|
|
'tornado >= 4.4, < 5', # Tornado 5 requires Python >= 2.7.9
|
|
'Mopidy >= 1.0',
|
|
'Pykka >= 1.1',
|
|
],
|
|
entry_points={
|
|
'mopidy.ext': [
|
|
'radionet = mopidy_radionet: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',
|
|
'Topic :: Multimedia :: Sound/Audio :: Players',
|
|
],
|
|
)
|