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>
This commit is contained in:
2026-06-01 13:46:34 +02:00
parent c0fa9cb0e6
commit b7cec9d24b
17 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
try:
from .AbletonOSC.manager import Manager
from .ableton_osc.manager import Manager
except ImportError:
# Allows pytest to import without Ableton's runtime present
pass