-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
28 lines (25 loc) · 808 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
import sys
from setuptools import setup
install_require = []
if sys.version_info.major < 3:
print('Python 2 is not supported')
sys.exit(1)
elif sys.version_info.major > 2 and \
sys.version_info.minor < 4:
print('Python 3.4 or newer is required')
sys.exit(1)
setup(name='KNXmap',
version='0.10.0',
packages=['knxmap',
'knxmap.bus',
'knxmap.usb',
'knxmap.data',
'knxmap.messages'],
entry_points={
'console_scripts': ['knxmap=knxmap.main:main']},
install_requires=install_require,
url='https://github.com/takeshixx/knxmap',
license='GNU GPLv3',
author='takeshix',
author_email='[email protected]',
description='KNXnet/IP network and bus mapper')