forked from pimoroni/mopidy-pidi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.36 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
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-PiDi",
version=get_version("mopidy_pidi/__init__.py"),
url="https://github.com/pimoroni/mopidy-pidi",
license="Apache License, Version 2.0",
author="Phil Howard",
author_email="[email protected]",
description="Mopidy extension for displaying song info and album art using pidi plugins",
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",
"Mopidy >= 2.2",
"Pykka >= 2.0",
"musicbrainzngs >= 0.6",
"netifaces"
],
entry_points={
"mopidy.ext": [
"pidi = mopidy_pidi: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.7",
"Topic :: Multimedia :: Sound/Audio :: Players",
],
)