forked from klattimer/LGWebOSRemote
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·44 lines (41 loc) · 1.04 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
from setuptools import setup
LGTV_VERSION = '0.3'
LGTV_DOWNLOAD_URL = (
'https://github.com/klattimer/LGWebOSRemote/tarball/' + LGTV_VERSION
)
setup(
name='LGTV',
packages=['LGTV'],
version=LGTV_VERSION,
description='LG WebOS TV Controller.',
long_description='',
license='MIT',
author='Karl Lattimer',
author_email='[email protected]',
url='https://github.com/klattimer/LGWebOSRemote',
download_url=LGTV_DOWNLOAD_URL,
entry_points={
'console_scripts': [
'lgtv=LGTV:main'
]
},
keywords=[
'smarthome', 'smarttv', 'lg', 'tv', 'webos', 'remote'
],
install_requires=[
'wakeonlan',
'ws4py',
'requests',
'getmac',
],
data_files=[
('config', ['data/config.json'])
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Natural Language :: English',
],
)