Files
homeassistant-bluetooth-dev…/emulated-roku-script/setup.py
2021-02-19 19:51:50 +01:00

18 lines
582 B
Python
Executable File

"""Emulated Roku library."""
from setuptools import setup
setup(name="emulated_roku",
version="0.1.7",
description="Library to emulate a roku server to serve as a proxy"
"for remotes such as Harmony",
url="https://gitlab.com/mindig.marton/emulated_roku",
download_url="https://gitlab.com"
"/mindig.marton/emulated_roku"
"/repository/archive.zip?ref=0.1.7",
author="mindigmarton",
license="MIT",
packages=["emulated_roku"],
install_requires=["aiohttp>2"],
zip_safe=True)