-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (39 loc) · 1.17 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
from setuptools import setup
setup(
name='osxmpdkeys',
version='1.0.3',
description='Control mpd with the OS X media keys.',
long_description=open('README.rst').read(),
author='Justin Li',
author_email='[email protected]',
url='https://github.com/pushrax/osxmpdkeys',
license='MIT',
packages=[
'osxmpdkeys'
],
scripts=[
'mpdkeys'
],
install_requires=[
'osxmmkeys>=1.0.1',
'python-mpd2>=0.5',
'argparse',
],
package_data={'': ['LICENSE']},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Multimedia :: Sound/Audio :: Players',
]
)