mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2025-12-30 18:19:31 -06:00
The `packaging` lib is not listed in the `install_requires` list. https://github.com/greyli/flask-extension-status/actions/runs/7129071225/job/19412328108 ``` Run python -c "from flask import Flask; app = Flask(__name__); from flask_debugtoolbar import DebugToolbarExtension; DebugToolbarExtension(app)" Traceback (most recent call last): File "<string>", line 1, in <module> File "/opt/hostedtoolcache/Python/3.12.0/x64/lib/python3.12/site-packages/flask_debugtoolbar/__init__.py", line 6, in <module> from packaging import version as version_builder ModuleNotFoundError: No module named 'packaging' Error: Process completed with exit code 1. ```
15 lines
304 B
Python
15 lines
304 B
Python
from setuptools import setup
|
|
|
|
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
|
|
setup(
|
|
name="Flask-DebugToolbar",
|
|
install_requires=[
|
|
'Flask>=0.8',
|
|
'Blinker',
|
|
'itsdangerous',
|
|
'werkzeug',
|
|
'MarkupSafe',
|
|
'packaging',
|
|
],
|
|
)
|