forked from konikvranik/pyCEC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (37 loc) · 1022 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
41
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
PACKAGES = find_packages(exclude=['tests', 'tests.*', 'build'])
REQUIRES = [
# 'cec',
'typing'
]
setup(
name="pyCEC",
version="0.4.13",
author="Petr Vraník",
author_email="hpa@suteren.net",
description=(
"Provide HDMI CEC devices as objects," +
" especially for use with Home Assistant"),
license="MIT",
keywords="cec hdmi home-assistant",
url="https://github.com/konikvranik/pycec/",
packages=PACKAGES,
install_requires=REQUIRES,
long_description='README.rst',
test_suite='tests',
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Topic :: Home Automation",
"Topic :: Multimedia",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.4',
],
entry_points={
'console_scripts': [
'pycec=pycec.__main__:main',
],
},
)