diff --git a/internal/backends/python/pypi_map.override.go b/internal/backends/python/pypi_map.override.go index b3466317..e9544fc4 100644 --- a/internal/backends/python/pypi_map.override.go +++ b/internal/backends/python/pypi_map.override.go @@ -11,4 +11,12 @@ var moduleToPypiPackageOverride = map[string]string{ "faiss": "faiss-cpu", // faiss is offered as precompiled wheels, faiss-cpu and faiss-gpu. "graphics": "graphics.py", // this package is popular, but the module doesn't match the package name https://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/graphics.html#a-graphics-introduction "replit.ai": "replit-ai", // Replit's AI package + /* Proxy packages + * + * These are packages that provide helpful aliases, but otherwise provide no functionality. + * We should prefer the real version. + */ + "discord": "discord.py", + "bs4": "beautifulsoup4", + "glm": "PyGLM", }