-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 995 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
34
35
36
37
38
39
40
# -*- coding: utf-8 -*-
import setuptools # NOQA
__title__ = "samsung_remote_rs232"
__version__ = "0.0.0a"
__url__ = "https://github.com/raydog153/samsung_remote_rs232"
__author__ = "Ray Boutotte"
__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": ["samsung_remote_rs232=samsung_remote_rs232.__main__:main"]
},
packages=[
"samsung_remote_rs232"
],
install_requires=[
'pyserial'
],
extras_require={
},
classifiers=[
"Development Status :: Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Home Automation",
],
zip_safe=False
)