-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (30 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as readme:
description = readme.read()
setup(name='samsung',
version='0.3.0',
description='network remote library for Samsung C, D and E-Series devices',
long_description=description,
author='David Poisl',
author_email='[email protected]',
url='https://github.com/dpoisl/pySamsung/',
platforms=('any',),
packages=find_packages(),
entry_points={
'console_scripts': [
'sstv_remote = samsung.cli:remote',
'sstv_listener = samsung.cli:listener',
]
},
classifiers=('Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Multimedia',
'Topic :: Home Automation',
'Topic :: Internet',
)
)