Files
flask-debugtoolbar/setup.py
Jeff Widman 677bf794aa Drop unnecessary Blinker dependency
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.
2024-04-29 11:20:24 -06:00

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',
],
}
)