forked from newAM/hisensetv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 831 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
import os
from setuptools import setup
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.rst"), "r") as f:
long_description = f.read()
setup(
name="hisensetv",
description="MQTT interface to Hisense televisions.",
long_description=long_description,
version="0.0.6",
author="Alex M.",
author_email="[email protected]",
url="https://github.com/newAM/hisensetv",
license="MIT",
python_requires=">=3.6",
install_requires=["paho-mqtt>=1.5.0"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={"console_scripts": ["hisensetv=hisensetv.__main__:main"]},
packages=["hisensetv"],
)