diff --git a/__init__.py b/__init__.py index 189a27a..e8cba53 100644 --- a/__init__.py +++ b/__init__.py @@ -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 diff --git a/AbletonOSC/__init__.py b/ableton_osc/__init__.py similarity index 100% rename from AbletonOSC/__init__.py rename to ableton_osc/__init__.py diff --git a/AbletonOSC/application.py b/ableton_osc/application.py similarity index 100% rename from AbletonOSC/application.py rename to ableton_osc/application.py diff --git a/AbletonOSC/browser.py b/ableton_osc/browser.py similarity index 100% rename from AbletonOSC/browser.py rename to ableton_osc/browser.py diff --git a/AbletonOSC/clip.py b/ableton_osc/clip.py similarity index 100% rename from AbletonOSC/clip.py rename to ableton_osc/clip.py diff --git a/AbletonOSC/clip_slot.py b/ableton_osc/clip_slot.py similarity index 100% rename from AbletonOSC/clip_slot.py rename to ableton_osc/clip_slot.py diff --git a/AbletonOSC/device.py b/ableton_osc/device.py similarity index 100% rename from AbletonOSC/device.py rename to ableton_osc/device.py diff --git a/AbletonOSC/groove.py b/ableton_osc/groove.py similarity index 100% rename from AbletonOSC/groove.py rename to ableton_osc/groove.py diff --git a/AbletonOSC/handler.py b/ableton_osc/handler.py similarity index 100% rename from AbletonOSC/handler.py rename to ableton_osc/handler.py diff --git a/AbletonOSC/manager.py b/ableton_osc/manager.py similarity index 100% rename from AbletonOSC/manager.py rename to ableton_osc/manager.py diff --git a/AbletonOSC/osc_server.py b/ableton_osc/osc_server.py similarity index 100% rename from AbletonOSC/osc_server.py rename to ableton_osc/osc_server.py diff --git a/AbletonOSC/return_track.py b/ableton_osc/return_track.py similarity index 100% rename from AbletonOSC/return_track.py rename to ableton_osc/return_track.py diff --git a/AbletonOSC/scene.py b/ableton_osc/scene.py similarity index 100% rename from AbletonOSC/scene.py rename to ableton_osc/scene.py diff --git a/AbletonOSC/song.py b/ableton_osc/song.py similarity index 100% rename from AbletonOSC/song.py rename to ableton_osc/song.py diff --git a/AbletonOSC/track.py b/ableton_osc/track.py similarity index 100% rename from AbletonOSC/track.py rename to ableton_osc/track.py diff --git a/AbletonOSC/view.py b/ableton_osc/view.py similarity index 100% rename from AbletonOSC/view.py rename to ableton_osc/view.py diff --git a/pyproject.toml b/pyproject.toml index 8092bcc..2d7809f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,4 +17,4 @@ dev = [ [tool.setuptools.packages.find] where = ["."] -include = ["AbletonOSC*"] +include = ["ableton_osc*"]