New initial version

This commit is contained in:
root
2026-06-21 18:42:39 +00:00
commit 009484197f
45 changed files with 5538 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='enocean',
version='0.60.1',
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',
])