Files
valknar b7cec9d24b Rename package directory AbletonOSC/ -> ableton_osc/
Python package naming convention uses snake_case. Update the import in
the root __init__.py and the setuptools include pattern in pyproject.toml.
Internal relative imports within the package are unaffected.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-01 13:46:34 +02:00

10 lines
209 B
Python

try:
from .ableton_osc.manager import Manager
except ImportError:
# Allows pytest to import without Ableton's runtime present
pass
def create_instance(c_instance):
return Manager(c_instance)