forked from raman325/pyvizio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (25 loc) · 840 Bytes
/
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
from setuptools import setup
with open('pyvizio/version.py') as f: exec(f.read())
setup(
name='pyvizio',
version=__version__,
description='Python library for interfacing with Vizio SmartCast TV (2016+ models)',
url='https://github.com/vkorn/pyvizio',
author='Vlad Korniev',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
keywords='vizio smartcast',
packages=["pyvizio"],
install_requires=['click', 'requests', 'jsonpickle', 'xmltodict'],
entry_points={
'console_scripts': [
'pyvizio=pyvizio.cli:cli',
],
},
)