Make project installable

This commit is contained in:
sqozz 2021-06-30 00:49:36 +02:00
parent be48542115
commit 0ca919c9b0
2 changed files with 14 additions and 0 deletions

14
setup.py Normal file
View file

@ -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(),
)