-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
37 lines (35 loc) · 1.26 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
""" Install the cecdaemon package
"""
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='cecdaemon',
version='1.0.0',
description='Daemon and tools for managing CEC capabilities',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/simons-public/cecdaemon',
author='Chris Simons',
author_email='chris@simonsmail.net',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Topic :: Games/Entertainment',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License'
],
keywords='libcec cec daemon htpc',
packages=['cecdaemon'],
install_requires=['cec', 'python-uinput'],
data_files=[('/usr/share/cecdaemon', [
'examples/cecdaemon.conf-example',
'examples/cecdaemon.service-example',
'examples/example_server.py',
])],
entry_points={
'console_scripts': [
'cecdaemon=cecdaemon.__main__:main',
'cecusercodes=cecdaemon.cecusercodes:main',
]
})