Skip to content

Commit 79fd0b8

Browse files
committed
Update metadata
1 parent 5b22891 commit 79fd0b8

3 files changed

Lines changed: 38 additions & 11 deletions

File tree

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1-
.idea
1+
*.egg-info/
2+
3+
__pycache__
4+
.idea/
5+
.cache/
6+
.mypy_cache/
7+
.tox/
8+
.venv/
9+
.coverage
10+
11+
dist/
12+
docs/_build/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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.
44

5-
This library was forked from [pylgnetcast](https://github.com/wokar/pylgnetcast) and is primarily being developed with the intent of supporting home-assistant.
5+
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).
66

77
## Dependencies
88

setup.py

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
1-
21
from setuptools import setup
2+
from os import path
3+
4+
this_directory = path.abspath(path.dirname(__file__))
5+
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
6+
long_description = f.read()
37

4-
setup(name='pylgnetcast',
5-
version='0.3.2',
6-
description='Client for the LG Smart TV running NetCast 3 or 4.',
7-
url='https://github.com/Drafteed/python-lgnetcast',
8-
license='MIT',
9-
packages=['pylgnetcast'],
10-
install_requires=[],
11-
zip_safe=False)
8+
setup(
9+
name='pylgnetcast',
10+
version='0.3.3',
11+
maintainer='Artem Draft',
12+
maintainer_email='artemon_93@mail.ru',
13+
description='Client for the LG Smart TV running NetCast 3 or 4.',
14+
long_description=long_description,
15+
long_description_content_type='text/markdown',
16+
url='https://github.com/Drafteed/python-lgnetcast',
17+
license='MIT',
18+
packages=['pylgnetcast'],
19+
install_requires=['requests'],
20+
classifiers=[
21+
"Programming Language :: Python :: 3",
22+
"License :: OSI Approved :: MIT License",
23+
"Operating System :: OS Independent",
24+
],
25+
python_requires='>=3.6',
26+
zip_safe=False
27+
)

0 commit comments

Comments
 (0)