-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
47 lines (42 loc) · 1.47 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
from __future__ import unicode_literals
from setuptools import find_packages, setup
def get_version(filename):
from re import findall
with open(filename) as f:
metadata = dict(findall("__([a-z]+)__ = '([^']+)'", f.read()))
return metadata['version']
setup(
name='Mopidy-Mobile',
version=get_version('mopidy_mobile/__init__.py'),
url='https://github.com/tkem/mopidy-mobile',
license='Apache License, Version 2.0',
author='Thomas Kemmer',
author_email='tkemmer@computer.org',
description='Mopidy Web client extension for mobile devices',
long_description=open('README.rst').read(),
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
include_package_data=True,
install_requires=[
'setuptools',
'Mopidy >= 0.19'
],
entry_points={
'mopidy.ext': [
'mobile = mopidy_mobile:Extension',
],
},
classifiers=[
'Environment :: Web Environment',
'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 :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia :: Sound/Audio :: Players',
],
)