forked from Ape/samsungctl
-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
46 lines (44 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
import setuptools # NOQA
__title__ = "samsungctl"
__version__ = "0.8.0b"
__url__ = "https://github.com/kdschlosser/samsungctl"
__author__ = "Lauri Niskanen, Kevin Schlosser"
__author_email__ = "[email protected]"
__license__ = "MIT"
setuptools.setup(
name=__title__,
version=__version__,
description=__doc__,
url=__url__,
author=__author__,
author_email=__author_email__,
license=__license__,
long_description=open("README.md").read(),
entry_points={
"console_scripts": ["samsungctl=samsungctl.__main__:main"]
},
packages=[
"samsungctl",
"samsungctl.upnp",
"samsungctl.upnp.UPNP_Device",
"samsungctl.remote_encrypted",
"samsungctl.remote_encrypted.py3rijndael"
],
install_requires=[
'websocket-client',
'requests',
'lxml',
'six',
'ifaddr',
'pycryptodome'
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Home Automation",
],
zip_safe=False
)