mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2025-12-30 18:19:31 -06:00
Require Flask >= `2.2.0`. I'm comfortable going up to requiring `3.x`, but when I grep'd for places we use older Flask constructs, this was all I found. So for now no need to jump further. Flask `2.2.0` requires Python >= `3.7`, so also dropped older pythons.
15 lines
306 B
Python
15 lines
306 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>=2.2.0',
|
|
'Blinker',
|
|
'itsdangerous',
|
|
'werkzeug',
|
|
'MarkupSafe',
|
|
'packaging',
|
|
],
|
|
)
|