Files
Iris/setup.py

45 lines
1.3 KiB
Python
Raw Normal View History

2016-10-30 07:51:39 +13:00
from __future__ import unicode_literals
import re
from setuptools import setup, find_packages
def get_version(filename):
content = open(filename).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content))
return metadata['version']
setup(
name='Mopidy-Iris',
version=get_version('mopidy_iris/__init__.py'),
2016-12-17 09:34:44 +13:00
url='https://github.com/jaedb/iris',
2016-10-30 07:51:39 +13:00
license='Apache License, Version 2.0',
author='James Barnsley',
author_email='james@barnsley.nz',
2016-12-17 09:34:44 +13:00
description='A fully-functional Mopidy web client encompassing Spotify and many other backends',
2016-10-30 07:51:39 +13:00
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'setuptools >= 3.3',
2017-03-06 18:33:47 +13:00
'pylast >= 1.6.0',
2016-10-30 07:51:39 +13:00
'Mopidy >= 2.0',
'Mopidy-Local-Images >= 1.0',
2017-09-22 16:15:50 +12:00
'ConfigObj >= 5.0.6',
2018-03-25 10:20:17 +13:00
'requests >= 2.0.0',
'tornado >= 3.2, < 5.0'
2016-10-30 07:51:39 +13:00
],
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',
],
entry_points={
'mopidy.ext': [
'iris = mopidy_iris:Extension',
2016-10-30 07:51:39 +13:00
],
},
)