-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (31 loc) · 1.11 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
from setuptools import setup
with open('pyviziosoundbar/version.py') as f: exec(f.read())
with open('README.md', 'r') as myfile:
longdescription=myfile.read()
setup(
name='pyviziosoundbar',
version=__version__,
description='Python library for interfacing with Vizio SmartCast Sound Bars',
long_description=longdescription,
long_description_content_type="text/markdown",
url='https://github.com/raman325/pyviziosoundbar',
author='Raman Gupta',
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',
'Operating System :: OS Independent',
'Environment :: Console',
],
keywords='vizio smartcast soundbar vizio-soundbar',
packages=["pyviziosoundbar"],
install_requires=['click', 'requests', 'jsonpickle', 'xmltodict'],
entry_points={
'console_scripts': [
'pyviziosoundbar=pyviziosoundbar.cli:cli',
],
},
)