-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (55 loc) · 2.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/python3
# Copyright (C) 2012-2017 Cyrille Defranoux
#
# This file is part of Homewatcher.
#
# Homewatcher is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Homewatcher is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Homewatcher. If not, see <http://www.gnu.org/licenses/>.
#
# For any question, feature requests or bug reports, feel free to contact me at:
# knx at aminate dot net
from distutils.core import setup
import sys
import homewatcher
def installRequirement(requirementName):
print('************************* IMPORTANT ******************************'.format(requirementName))
print('The {0} package is required and is not installed on this machine.'.format(requirementName))
print('You should install {0} first using for instance "pip3 install {0}"'.format(requirementName))
print('******************************************************************'.format(requirementName))
if sys.version_info.major < 3:
print('This package is compatible with Python 3 and above.')
exit(4)
# Install pyknx if required.
try:
import pyknx
except ImportError:
installRequirement('pyknx')
# # Install lxml.
# try:
# import lxml
# except ImportError:
# installRequirement('lxml')
setup(name='homewatcher',
version=homewatcher.__version__,
description='Alarm system built on top of Linknx',
long_description=''.join(open('README.md').readlines()),
author='Cyrille Defranoux',
author_email='[email protected]',
maintainer='Cyrille Defranoux',
maintainer_email='[email protected]',
license='GNU Public General License',
url='https://github.com/2franix/homewatcher/',
requires=['pyknx (>=2.0)'],
packages=['homewatcher', 'homewatcher.plugins'],
data_files=[('.', ['README.md'])],
scripts=['hwconf.py', 'hwdaemon.py', 'hwresolve.py', 'hwversion.py'])