Files
mopidy-touchscreen/setup.py
9and3r 912d8016d3 Progressbar color
Volume control working
2014-07-20 22:27:12 +02:00

51 lines
1.4 KiB
Python

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-Touchscreen',
version=get_version('mopidy_touchscreen/__init__.py'),
url='https://github.com/9and3r/mopidy-touchscreen',
license='Apache License, Version 2.0',
author='9and3r',
author_email='9and3r@gmail.com',
description='Mopidy extension to show info on a display and control from it',
long_description=open('README.rst').read(),
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
include_package_data=True,
install_requires=[
'setuptools',
'Mopidy >= 0.18',
'Pykka >= 1.1',
'pygame'
],
test_suite='nose.collector',
tests_require=[
'nose',
'mock >= 1.0',
],
entry_points={
'mopidy.ext': [
'touchscreen = mopidy_touchscreen: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',
],
)