forked from kipe/enocean
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 671 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 671 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='enocean',
version='0.60.0',
description='EnOcean serial protocol implementation',
author='Kimmo Huoman',
author_email='kipenroskaposti@gmail.com',
url='https://github.com/kipe/enocean',
packages=[
'enocean',
'enocean.protocol',
'enocean.communicators',
],
scripts=[
'examples/enocean_example.py',
],
package_data={
'': ['EEP.xml']
},
install_requires=[
'enum-compat>=0.0.2',
'pyserial>=3.0',
'beautifulsoup4>=4.3.2',
])