From 0ca919c9b0412ff079eb49b4dc379f47945aa71f Mon Sep 17 00:00:00 2001 From: sqozz Date: Wed, 30 Jun 2021 00:49:36 +0200 Subject: [PATCH] Make project installable --- lg.py => lgtv2011/__init__.py | 0 setup.py | 14 ++++++++++++++ 2 files changed, 14 insertions(+) rename lg.py => lgtv2011/__init__.py (100%) create mode 100644 setup.py diff --git a/lg.py b/lgtv2011/__init__.py similarity index 100% rename from lg.py rename to lgtv2011/__init__.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b5d5d98 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +from distutils.core import setup +from setuptools import find_packages + +setup(name='lgtv2011', + version='0.0.1', + description='Fork of https://github.com/grieve/python-lgtv which now only supports 2011 LG TVs', + author='sqozz', + author_email='', + url='https://git.geekify.de/sqozz/python-lgtv', + license='LICENSE', + packages=find_packages(), + )