mirror of
https://github.com/andreicscs/HoneyWire
synced 2026-06-26 12:39:53 +00:00
dbfdf1df90
- 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
7 lines
128 B
Python
7 lines
128 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='honeywire',
|
|
version='1.0.0',
|
|
py_modules=find_packages(),
|
|
) |