feat(pm3py): project scaffolding with CRC-16/A and protocol constants

This commit is contained in:
michael
2026-03-15 22:11:38 -07:00
commit 22dc438464
10 changed files with 296 additions and 0 deletions

11
setup.py Normal file
View File

@@ -0,0 +1,11 @@
from setuptools import setup, find_packages
setup(
name="pm3py",
version="0.1.0",
packages=find_packages(),
install_requires=[
"pyserial-asyncio>=0.6",
],
python_requires=">=3.10",
)