From 98ec84aec836f21d4f4f3a130ade8bab42771dd9 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Tue, 20 Jan 2026 12:05:10 -0500 Subject: [PATCH] feat: delete setup.py - migration complete Removes setup.py as all configuration has been migrated to pyproject.toml (PEP 621). Verification confirms: - Package installs correctly with pip install -e . - All 142 entry points discoverable via importlib.metadata - All tool configurations (pytest, pycodestyle, isort, importlinter) working - Django checks pass for both LMS and CMS Co-Authored-By: Claude Opus 4.5 --- setup.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 6bc0c08d65..0000000000 --- a/setup.py +++ /dev/null @@ -1,7 +0,0 @@ -""" # lint-amnesty, pylint: disable=django-not-configured -Setup script for the Open edX package. -""" - -from setuptools import setup - -setup()