-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
51 lines (46 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
48
49
50
51
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-AlarmClock',
version=get_version('mopidy_alarmclock/__init__.py'),
url='https://github.com/DavisNT/mopidy-alarmclock',
license='Apache License, Version 2.0',
author='Mathieu Xhonneux',
author_email='m.xhonneux@gmail.com',
maintainer='Davis Mosenkovs',
maintainer_email='python-apps@dm.id.lv',
description='A Mopidy extension for using it as an alarm clock.',
long_description=open('README.rst').read(),
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
include_package_data=True,
python_requires='>= 3.7',
install_requires=[
'setuptools',
'Mopidy >= 3.0',
'Pykka >= 1.1',
'monotonic >= 1.4',
],
test_suite='nose.collector',
tests_require=[
'nose',
'mock >= 1.0',
],
entry_points={
'mopidy.ext': [
'alarmclock = mopidy_alarmclock: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 :: 3',
'Topic :: Multimedia :: Sound/Audio :: Players',
],
)