forked from home-assistant-libs/pychromecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 871 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
from setuptools import setup, find_packages
setup(
name='PyChromecast',
version='0.6.13',
license='MIT',
url='https://github.com/balloob/pychromecast',
author='Paulus Schoutsen',
author_email='[email protected]',
description='Python module to talk to Google Chromecast.',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['requests>=2.0', 'protobuf>=3.0.0b1.post2', 'zeroconf>=0.16.0'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)