mirror of
https://github.com/Burningstone91/smart-home-setup.git
synced 2022-05-05 21:16:50 +03:00
18 lines
582 B
Python
Executable File
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)
|