-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.41 KB
/
setup.py
File metadata and controls
47 lines (41 loc) · 1.41 KB
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
import re
def get_version(filename):
content = open(filename).read()
metadata = dict(re.findall('__([a-z]+)__ = "([^"]+)"', content))
return metadata['version']
module_version = get_version('mopidy_dam1021/__init__.py')
setup(
name='Mopidy-dam1021',
version=module_version,
url='https://github.com/fortaa/mopidy-dam1021',
license='Apache License, Version 2.0',
download_url = 'https://github.com/fortaa/mopidy-dam1021/tarball/%s' % module_version,
author="Forta(a)",
author_email="fortaa@users.noreply.github.com",
description='Mopidy extension for controlling volume on a dam1021 DAC',
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',
'Pykka >= 1.1',
'dam1021',
],
entry_points={
'mopidy.ext': [
'dam1021 = mopidy_dam1021: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',
],
)