forked from chros73/bscpylgtv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (29 loc) · 848 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
about = {}
with open("bscpylgtv/_version.py") as f:
exec(f.read(), about)
with open("README.md") as f:
readme = f.read()
extras = {
"with_calibration": ["numpy>=1.17.0"]
}
setup(
name="bscpylgtv",
packages=["bscpylgtv"],
install_requires=["websockets>=8.1", "sqlitedict"],
extras_require=extras,
python_requires=">=3.8",
zip_safe=True,
version=about["__version__"],
description="Library to control webOS based LG TV devices.",
long_description=readme,
long_description_content_type="text/markdown",
author="chros",
author_email="[email protected]",
url="https://github.com/chros73/bscpylgtv",
keywords=["webos", "tv"],
classifiers=[],
entry_points={
"console_scripts": ["bscpylgtvcommand=bscpylgtv.utils:bscpylgtvcommand"]
},
)