-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (36 loc) · 1.23 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
"""Hue platform for MPF."""
from setuptools import setup
setup(
name='mpf_hue_platform',
version='1.0',
description='Mission Pinball Framework External Platform',
long_description='''Use Hue lights in MPF''',
url='http://missionpinball.org',
author='The Mission Pinball Framework Team',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Topic :: Artistic Software',
'Topic :: Games/Entertainment :: Arcade'
],
keywords='pinball',
include_package_data=True,
# MANIFEST.in picks up the rest
packages=['mpf_hue_platform'],
install_requires=['mpf', 'phue'],
tests_require=[],
entry_points='''
[mpf.platforms]
hue=mpf_hue_platform.platform:HueHardwarePlatform
'''
)