Add setuptools to requirements for Python 3.12+ compatibility

pkg_resources (used for theme entry point loading) lives in
setuptools, which Python 3.12+ no longer bundles in venvs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
russell@unturf.com 2026-02-08 11:57:26 -05:00
parent 7575f74837
commit 8d64fa11e4

View file

@ -1,6 +1,10 @@
# python 2 -> 3 compat.
six
# Python 3.12+ no longer bundles setuptools in venvs.
# Pyramid imports pkg_resources which lives in setuptools.
setuptools
# Pyramid.
plaster_pastedeploy
pyramid