Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Drafteed committed Apr 30, 2021
1 parent 5b22891 commit 79fd0b8
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 11 deletions.
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
.idea
*.egg-info/

__pycache__
.idea/
.cache/
.mypy_cache/
.tox/
.venv/
.coverage

dist/
docs/_build/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Python 3 library and command line tool to control LG Smart TV running NetCast 3.0 (LG Smart TV models released in 2012) and NetCast 4.0 (LG Smart TV models released in 2013) via TCP/IP.

This library was forked from [pylgnetcast](https://github.com/wokar/pylgnetcast) and is primarily being developed with the intent of supporting home-assistant.
This library was forked from [wokar/pylgnetcast](https://github.com/wokar/pylgnetcast) and is primarily being developed with the intent of supporting [home-assistant](https://github.com/home-assistant/home-assistant).

## Dependencies

Expand Down
34 changes: 25 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@

from setuptools import setup
from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(name='pylgnetcast',
version='0.3.2',
description='Client for the LG Smart TV running NetCast 3 or 4.',
url='https://github.com/Drafteed/python-lgnetcast',
license='MIT',
packages=['pylgnetcast'],
install_requires=[],
zip_safe=False)
setup(
name='pylgnetcast',
version='0.3.3',
maintainer='Artem Draft',
maintainer_email='artemon_93@mail.ru',
description='Client for the LG Smart TV running NetCast 3 or 4.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Drafteed/python-lgnetcast',
license='MIT',
packages=['pylgnetcast'],
install_requires=['requests'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
zip_safe=False
)

0 comments on commit 79fd0b8

Please sign in to comment.