mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-03 20:20:05 -06:00
Flask requires this, so it's a transitive dep, but it's not directly used within this toolbar at all. We do directly import the other listed packages, so they should stay.
20 lines
411 B
Python
20 lines
411 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',
|
|
'itsdangerous',
|
|
'werkzeug',
|
|
'MarkupSafe',
|
|
'packaging',
|
|
],
|
|
extras_require={
|
|
"docs": [
|
|
'Sphinx>=1.2.2',
|
|
'Pallets-Sphinx-Themes',
|
|
],
|
|
}
|
|
)
|