Files
andreicscs-HoneyWire/SDKs/python-honeywire/setup.py
T
andreicscs dbfdf1df90 refactor: implement V1.0 contract and unified SDK architecture
- Migrated to HW_ environment variable namespace
- Created installable python-honeywire SDK package
- Standardized sensor templates with Distroless Docker support
- Added CI/CD pipeline for PR security scanning and functional testing
- Updated all internal documentation to match V1.0 specs
2026-04-03 11:38:16 +02:00

7 lines
128 B
Python

from setuptools import setup, find_packages
setup(
name='honeywire',
version='1.0.0',
py_modules=find_packages(),
)